{"id":"98e111aef8544f33dcdcf04cb315dc45","_format":"hh-sol-build-info-1","solcVersion":"0.8.27","solcLongVersion":"0.8.27+commit.40a35a09","input":{"language":"Solidity","sources":{"contracts/interfaces/AggregatedStakedPSYSV3.sol":{"content":"pragma solidity ^0.8.10;\n\ninterface AggregatedStakedPSYSV3 {\n    event Approval(address indexed owner, address indexed spender, uint256 value);\n    event AssetConfigUpdated(address indexed asset, uint256 emission);\n    event AssetIndexUpdated(address indexed asset, uint256 index);\n    event Cooldown(address indexed user, uint256 amount);\n    event CooldownSecondsChanged(uint256 cooldownSeconds);\n    event DelegateChanged(address indexed delegator, address indexed delegatee, uint8 delegationType);\n    event DelegatedPowerChanged(address indexed user, uint256 amount, uint8 delegationType);\n    event ExchangeRateChanged(uint216 exchangeRate);\n    event FundsReturned(uint256 amount);\n    event GHODebtTokenChanged(address indexed newDebtToken);\n    event MaxSlashablePercentageChanged(uint256 newPercentage);\n    event PendingAdminChanged(address indexed newPendingAdmin, uint256 role);\n    event Redeem(address indexed from, address indexed to, uint256 assets, uint256 shares);\n    event RewardsAccrued(address user, uint256 amount);\n    event RewardsClaimed(address indexed from, address indexed to, uint256 amount);\n    event RoleClaimed(address indexed newAdmin, uint256 role);\n    event Slashed(address indexed destination, uint256 amount);\n    event SlashingExitWindowDurationChanged(uint256 windowSeconds);\n    event SlashingSettled();\n    event Staked(address indexed from, address indexed to, uint256 assets, uint256 shares);\n    event Transfer(address indexed from, address indexed to, uint256 value);\n    event UserIndexUpdated(address indexed user, address indexed asset, uint256 index);\n\n    struct AssetConfigInput {\n        uint128 emissionPerSecond;\n        uint256 totalStaked;\n        address underlyingAsset;\n    }\n\n    struct ExchangeRateSnapshot {\n        uint40 blockNumber;\n        uint216 value;\n    }\n\n    function CLAIM_HELPER_ROLE() external view returns (uint256);\n    function COOLDOWN_ADMIN_ROLE() external view returns (uint256);\n    function COOLDOWN_SECONDS() external view returns (uint256);\n    function DELEGATE_BY_TYPE_TYPEHASH() external view returns (bytes32);\n    function DELEGATE_TYPEHASH() external view returns (bytes32);\n    function DISTRIBUTION_END() external view returns (uint256);\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\n    function EIP712_REVISION() external view returns (bytes memory);\n    function EMISSION_MANAGER() external view returns (address);\n    function EXCHANGE_RATE_UNIT() external view returns (uint256);\n    function INITIAL_EXCHANGE_RATE() external view returns (uint216);\n    function LOWER_BOUND() external view returns (uint256);\n    function PERMIT_TYPEHASH() external view returns (bytes32);\n    function PRECISION() external view returns (uint8);\n    function REVISION() external pure returns (uint256);\n    function REWARDS_VAULT() external view returns (address);\n    function REWARD_TOKEN() external view returns (address);\n    function SLASH_ADMIN_ROLE() external view returns (uint256);\n    function STAKED_TOKEN() external view returns (address);\n    function UNSTAKE_WINDOW() external view returns (uint256);\n    function _aaveGovernance() external view returns (address);\n    function _nonces(address) external view returns (uint256);\n    function _votingSnapshots(address, uint256) external view returns (uint128 blockNumber, uint128 value);\n    function _votingSnapshotsCounts(address) external view returns (uint256);\n    function allowance(address owner, address spender) external view returns (uint256);\n    function approve(address spender, uint256 amount) external returns (bool);\n    function assets(address)\n        external\n        view\n        returns (uint128 emissionPerSecond, uint128 lastUpdateTimestamp, uint256 index);\n    function balanceOf(address account) external view returns (uint256);\n    function claimRewards(address to, uint256 amount) external;\n    function claimRewardsAndRedeem(address to, uint256 claimAmount, uint256 redeemAmount) external;\n    function claimRewardsAndRedeemOnBehalf(address from, address to, uint256 claimAmount, uint256 redeemAmount)\n        external;\n    function claimRewardsAndStake(address to, uint256 amount) external returns (uint256);\n    function claimRewardsAndStakeOnBehalf(address from, address to, uint256 amount) external returns (uint256);\n    function claimRewardsOnBehalf(address from, address to, uint256 amount) external returns (uint256);\n    function claimRoleAdmin(uint256 role) external;\n    function configureAssets(AssetConfigInput[] memory assetsConfigInput) external;\n    function cooldown() external;\n    function cooldownOnBehalfOf(address from) external;\n    function decimals() external view returns (uint8);\n    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);\n    function delegate(address delegatee) external;\n    function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external;\n    function delegateByType(address delegatee, uint8 delegationType) external;\n    function delegateByTypeBySig(\n        address delegatee,\n        uint8 delegationType,\n        uint256 nonce,\n        uint256 expiry,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n    function getAdmin(uint256 role) external view returns (address);\n    function getCooldownSeconds() external view returns (uint256);\n    function getDelegateeByType(address delegator, uint8 delegationType) external view returns (address);\n    function getExchangeRate() external view returns (uint216);\n    function getExchangeRateSnapshot(uint32 index) external view returns (ExchangeRateSnapshot memory);\n    function getExchangeRateSnapshotsCount() external view returns (uint32);\n    function getMaxSlashablePercentage() external view returns (uint256);\n    function getPendingAdmin(uint256 role) external view returns (address);\n    function getPowerAtBlock(address user, uint256 blockNumber, uint8 delegationType) external view returns (uint256);\n    function getPowerCurrent(address user, uint8 delegationType) external view returns (uint256);\n    function getTotalRewardsBalance(address staker) external view returns (uint256);\n    function getUserAssetData(address user, address asset) external view returns (uint256);\n    function ghoDebtToken() external view returns (address);\n    function inPostSlashingPeriod() external view returns (bool);\n    function increaseAllowance(address spender, uint256 addedValue) external returns (bool);\n    function initialize(\n        address slashingAdmin,\n        address cooldownPauseAdmin,\n        address claimHelper,\n        uint256 maxSlashablePercentage,\n        uint256 cooldownSeconds\n    ) external;\n    function name() external view returns (string memory);\n    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s)\n        external;\n    function previewRedeem(uint256 shares) external view returns (uint256);\n    function previewStake(uint256 assets) external view returns (uint256);\n    function redeem(address to, uint256 amount) external;\n    function redeemOnBehalf(address from, address to, uint256 amount) external;\n    function returnFunds(uint256 amount) external;\n    function setCooldownSeconds(uint256 cooldownSeconds) external;\n    function setGHODebtToken(address newGHODebtToken) external;\n    function setMaxSlashablePercentage(uint256 percentage) external;\n    function setPendingAdmin(uint256 role, address newPendingAdmin) external;\n    function settleSlashing() external;\n    function slash(address destination, uint256 amount) external returns (uint256);\n    function stake(address to, uint256 amount) external;\n    function stakeWithPermit(address from, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;\n    function stakerRewardsToClaim(address) external view returns (uint256);\n    function stakersCooldowns(address) external view returns (uint40 timestamp, uint216 amount);\n    function symbol() external view returns (string memory);\n    function totalSupply() external view returns (uint256);\n    function totalSupplyAt(uint256) external view returns (uint256);\n    function transfer(address to, uint256 amount) external returns (bool);\n    function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"},"contracts/interfaces/AggregatorInterface.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ninterface AggregatorInterface {\n  function latestAnswer() external view returns (int256);\n\n  function latestTimestamp() external view returns (uint256);\n\n  function latestRound() external view returns (uint256);\n\n  function getAnswer(uint256 roundId) external view returns (int256);\n\n  function getTimestamp(uint256 roundId) external view returns (uint256);\n\n  event AnswerUpdated(int256 indexed current, uint256 indexed roundId, uint256 updatedAt);\n\n  event NewRound(uint256 indexed roundId, address indexed startedBy, uint256 startedAt);\n}"},"contracts/interfaces/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n  /**\n   * @dev Emitted when `value` tokens are moved from one account (`from`) to\n   * another (`to`).\n   *\n   * Note that `value` may be zero.\n   */\n  event Transfer(address indexed from, address indexed to, uint256 value);\n\n  /**\n   * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n   * a call to {approve}. `value` is the new allowance.\n   */\n  event Approval(address indexed owner, address indexed spender, uint256 value);\n\n  /**\n   * @dev Returns the amount of tokens in existence.\n   */\n  function totalSupply() external view returns (uint256);\n\n  /**\n   * @dev Returns the amount of tokens owned by `account`.\n   */\n  function balanceOf(address account) external view returns (uint256);\n\n  /**\n   * @dev Moves `amount` tokens from the caller's account to `to`.\n   *\n   * Returns a boolean value indicating whether the operation succeeded.\n   *\n   * Emits a {Transfer} event.\n   */\n  function transfer(address to, uint256 amount) external returns (bool);\n\n  /**\n   * @dev Returns the remaining number of tokens that `spender` will be\n   * allowed to spend on behalf of `owner` through {transferFrom}. This is\n   * zero by default.\n   *\n   * This value changes when {approve} or {transferFrom} are called.\n   */\n  function allowance(address owner, address spender)\n    external\n    view\n    returns (uint256);\n\n  /**\n   * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n   *\n   * Returns a boolean value indicating whether the operation succeeded.\n   *\n   * IMPORTANT: Beware that changing an allowance with this method brings the risk\n   * that someone may use both the old and the new allowance by unfortunate\n   * transaction ordering. One possible solution to mitigate this race\n   * condition is to first reduce the spender's allowance to 0 and set the\n   * desired value afterwards:\n   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n   *\n   * Emits an {Approval} event.\n   */\n  function approve(address spender, uint256 amount) external returns (bool);\n\n  /**\n   * @dev Moves `amount` tokens from `from` to `to` using the\n   * allowance mechanism. `amount` is then deducted from the caller's\n   * allowance.\n   *\n   * Returns a boolean value indicating whether the operation succeeded.\n   *\n   * Emits a {Transfer} event.\n   */\n  function transferFrom(\n    address from,\n    address to,\n    uint256 amount\n  ) external returns (bool);\n}\n"},"contracts/interfaces/IStakedTokenDataProvider.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ninterface IStakedTokenDataProvider {\n    struct StakedTokenData {\n        uint256 stakedTokenTotalSupply;\n        uint256 stakedTokenTotalRedeemableAmount;\n        uint256 stakeCooldownSeconds;\n        uint256 stakeUnstakeWindow;\n        uint256 stakedTokenPriceEth;\n        uint256 rewardTokenPriceEth;\n        uint256 distributionPerSecond;\n        uint256 distributionEnd;\n        uint256 stakeApy;\n        uint256 currentExchangeRate;\n        uint256 maxSlashablePercentage;\n    }\n\n    struct StakedTokenUserData {\n        uint256 stakedTokenUserBalance;\n        uint256 underlyingTokenUserBalance;\n        uint256 stakedTokenRedeemableAmount;\n        uint256 rewardsToClaim;\n        uint40 cooldownTimestamp;\n        uint216 cooldownAmount;\n    }\n\n    function ETH_USD_PRICE_FEED() external view returns (address);\n    function PSYS_USD_PRICE_FEED() external view returns (address);\n    function STAKED_PSYS() external view returns (address);\n\n    function getAllStakedTokenData() external view returns (\n        StakedTokenData memory stkPSYSData,\n        StakedTokenData memory stkBptData,\n        uint256 ethPrice\n    );\n\n    function getAllStakedTokenUserData(address user) external view returns (\n        StakedTokenData memory stkPSYSData,\n        StakedTokenUserData memory stkPSYSUserData,\n        StakedTokenData memory stkBptData,\n        StakedTokenUserData memory stkBptUserData,\n        uint256 ethPrice\n    );\n\n    function getstkPSYSUserData(address user) external view returns (\n        StakedTokenData memory stkPSYSData,\n        StakedTokenUserData memory stkPSYSUserData\n    );\n}"},"contracts/misc/StakedTokenDataProvider.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport {IERC20} from '../interfaces/IERC20.sol';\nimport {AggregatedStakedPSYSV3} from '../interfaces/AggregatedStakedPSYSV3.sol';\nimport {AggregatorInterface} from '../interfaces/AggregatorInterface.sol';\nimport {IStakedTokenDataProvider} from '../interfaces/IStakedTokenDataProvider.sol';\n\n/**\n * @title StakedTokenDataProvider\n * @notice Data provider contract for Staked PSYS tokens of the Safety Module\n * @author BGD Labs, modified by Pegasys\n */\ncontract StakedTokenDataProvider is IStakedTokenDataProvider {\n    address public immutable override ETH_USD_PRICE_FEED;\n    address public immutable override PSYS_USD_PRICE_FEED;\n    address public immutable override STAKED_PSYS;\n\n    uint256 private constant SECONDS_PER_YEAR = 365 days;\n    uint256 private constant APY_PRECISION = 10000;\n\n    constructor(\n        address stkPsys,\n        address ethUsdPriceFeed,\n        address psysUsdPriceFeed\n    ) {\n        STAKED_PSYS = stkPsys;\n        ETH_USD_PRICE_FEED = ethUsdPriceFeed;\n        PSYS_USD_PRICE_FEED = psysUsdPriceFeed;\n    }\n\n    /// @inheritdoc IStakedTokenDataProvider\n    function getAllStakedTokenData()\n        external\n        view\n        override\n        returns (\n            StakedTokenData memory stkPSYSData,\n            StakedTokenData memory,  // Maintaining return structure for compatibility\n            uint256 ethPrice\n        )\n    {\n        stkPSYSData = _getStakedTokenData(STAKED_PSYS, ETH_USD_PRICE_FEED);\n        ethPrice = uint256(AggregatorInterface(ETH_USD_PRICE_FEED).latestAnswer());\n    }\n\n    /// @inheritdoc IStakedTokenDataProvider\n    function getAllStakedTokenUserData(\n        address user\n    )\n        external\n        view\n        override\n        returns (\n            StakedTokenData memory stkPSYSData,\n            StakedTokenUserData memory stkPSYSUserData,\n            StakedTokenData memory,  // Empty for compatibility\n            StakedTokenUserData memory,  // Empty for compatibility\n            uint256 ethPrice\n        )\n    {\n        stkPSYSData = _getStakedTokenData(STAKED_PSYS, ETH_USD_PRICE_FEED);\n        stkPSYSUserData = _getStakedTokenUserData(STAKED_PSYS, user);\n        ethPrice = uint256(AggregatorInterface(ETH_USD_PRICE_FEED).latestAnswer());\n    }\n\n    function getStakedAssetData(\n        address stakedAsset,\n        address oracle\n    ) external view returns (StakedTokenData memory) {\n        return _getStakedTokenData(stakedAsset, oracle);\n    }\n\n    function getStakedUserData(\n        address stakedAsset,\n        address oracle,\n        address user\n    ) external view returns (StakedTokenData memory, StakedTokenUserData memory) {\n        return (_getStakedTokenData(stakedAsset, oracle), _getStakedTokenUserData(stakedAsset, user));\n    }\n\n    function getStakedAssetDataBatch(\n        address[] calldata stakedAssets,\n        address[] calldata oracles\n    ) external view returns (StakedTokenData[] memory, uint256) {\n        require(stakedAssets.length == oracles.length, 'Arrays must be of the same length');\n\n        StakedTokenData[] memory stakedData = new StakedTokenData[](stakedAssets.length);\n        uint256 ethPrice = uint256(AggregatorInterface(ETH_USD_PRICE_FEED).latestAnswer());\n        for (uint256 i = 0; i < stakedAssets.length; i++) {\n            stakedData[i] = _getStakedTokenData(stakedAssets[i], oracles[i]);\n        }\n        return (stakedData, ethPrice);\n    }\n\n    function getStakedUserDataBatch(\n        address[] calldata stakedAssets,\n        address[] calldata oracles,\n        address user\n    ) external view returns (StakedTokenData[] memory, StakedTokenUserData[] memory) {\n        require(stakedAssets.length == oracles.length, 'Arrays must be of the same length');\n        StakedTokenData[] memory stakedData = new StakedTokenData[](stakedAssets.length);\n        StakedTokenUserData[] memory userData = new StakedTokenUserData[](stakedAssets.length);\n\n        for (uint256 i = 0; i < stakedAssets.length; i++) {\n            stakedData[i] = _getStakedTokenData(stakedAssets[i], oracles[i]);\n            userData[i] = _getStakedTokenUserData(stakedAssets[i], user);\n        }\n        return (stakedData, userData);\n    }\n\n    function getstkPSYSUserData(\n        address user\n    )\n        external\n        view\n        override\n        returns (StakedTokenData memory stkPSYSData, StakedTokenUserData memory stkPSYSUserData)\n    {\n        stkPSYSData = _getStakedTokenData(STAKED_PSYS, ETH_USD_PRICE_FEED);\n        stkPSYSUserData = _getStakedTokenUserData(STAKED_PSYS, user);\n    }\n\n    function _getStakedTokenData(\n        address stakedToken,\n        address oracle\n    ) internal view returns (StakedTokenData memory data) {\n        AggregatedStakedPSYSV3 stkToken = AggregatedStakedPSYSV3(stakedToken);\n        \n        data.stakedTokenTotalSupply = stkToken.totalSupply();\n        data.stakedTokenTotalRedeemableAmount = stkToken.previewRedeem(data.stakedTokenTotalSupply);\n        data.stakeCooldownSeconds = stkToken.getCooldownSeconds();\n        data.stakeUnstakeWindow = stkToken.UNSTAKE_WINDOW();\n        data.rewardTokenPriceEth = uint256(AggregatorInterface(PSYS_USD_PRICE_FEED).latestAnswer());\n        data.distributionEnd = stkToken.DISTRIBUTION_END();\n        \n        if (block.timestamp < data.distributionEnd) {\n            (uint256 emissionPerSecond, , ) = stkToken.assets(address(stakedToken));\n            data.distributionPerSecond = emissionPerSecond;\n        }\n\n        data.stakedTokenPriceEth = data.rewardTokenPriceEth;\n        data.currentExchangeRate = stkToken.getExchangeRate();\n        data.maxSlashablePercentage = stkToken.getMaxSlashablePercentage();\n        data.stakeApy = _calculateApy(\n            data.distributionPerSecond,\n            data.stakedTokenTotalSupply,\n            data.currentExchangeRate\n        );\n    }\n\n    function _getStakedTokenUserData(\n        address stakedToken,\n        address user\n    ) internal view returns (StakedTokenUserData memory data) {\n        AggregatedStakedPSYSV3 stkToken = AggregatedStakedPSYSV3(stakedToken);\n        \n        data.stakedTokenUserBalance = stkToken.balanceOf(user);\n        data.underlyingTokenUserBalance = IERC20(stkToken.STAKED_TOKEN()).balanceOf(user);\n        data.stakedTokenRedeemableAmount = stkToken.previewRedeem(data.stakedTokenUserBalance);\n        data.rewardsToClaim = stkToken.getTotalRewardsBalance(user);\n        \n        // V3 cooldown structure\n        (data.cooldownTimestamp, data.cooldownAmount) = stkToken.stakersCooldowns(user);\n    }\n\n    function _calculateApy(\n        uint256 distributionPerSecond,\n        uint256 totalSupply,\n        uint256 exchangeRate\n    ) internal pure returns (uint256) {\n        if (totalSupply == 0) return 0;\n        \n        uint256 yearlyRewards = distributionPerSecond * SECONDS_PER_YEAR;\n        uint256 adjustedRewards = (yearlyRewards * exchangeRate) / 1e18;\n        \n        return (adjustedRewards * APY_PRECISION) / totalSupply;\n    }\n}"}},"settings":{"optimizer":{"enabled":true,"runs":200},"evmVersion":"paris","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"errors":[{"component":"general","errorCode":"1878","formattedMessage":"Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/interfaces/AggregatedStakedPSYSV3.sol\n\n","message":"SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.","severity":"warning","sourceLocation":{"end":-1,"file":"contracts/interfaces/AggregatedStakedPSYSV3.sol","start":-1},"type":"Warning"},{"component":"general","errorCode":"6321","formattedMessage":"Warning: Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.\n  --> contracts/misc/StakedTokenDataProvider.sol:39:13:\n   |\n39 |             StakedTokenData memory,  // Maintaining return structure for compatibility\n   |             ^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.","severity":"warning","sourceLocation":{"end":1329,"file":"contracts/misc/StakedTokenDataProvider.sol","start":1307},"type":"Warning"},{"component":"general","errorCode":"6321","formattedMessage":"Warning: Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.\n  --> contracts/misc/StakedTokenDataProvider.sol:57:13:\n   |\n57 |             StakedTokenData memory,  // Empty for compatibility\n   |             ^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.","severity":"warning","sourceLocation":{"end":1909,"file":"contracts/misc/StakedTokenDataProvider.sol","start":1887},"type":"Warning"},{"component":"general","errorCode":"6321","formattedMessage":"Warning: Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.\n  --> contracts/misc/StakedTokenDataProvider.sol:58:13:\n   |\n58 |             StakedTokenUserData memory,  // Empty for compatibility\n   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n","message":"Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.","severity":"warning","sourceLocation":{"end":1977,"file":"contracts/misc/StakedTokenDataProvider.sol","start":1951},"type":"Warning"},{"component":"general","errorCode":"5667","formattedMessage":"Warning: Unused function parameter. Remove or comment out the variable name to silence this warning.\n   --> contracts/misc/StakedTokenDataProvider.sol:126:9:\n    |\n126 |         address oracle\n    |         ^^^^^^^^^^^^^^\n\n","message":"Unused function parameter. Remove or comment out the variable name to silence this warning.","severity":"warning","sourceLocation":{"end":4660,"file":"contracts/misc/StakedTokenDataProvider.sol","start":4646},"type":"Warning"}],"sources":{"contracts/interfaces/AggregatedStakedPSYSV3.sol":{"ast":{"absolutePath":"contracts/interfaces/AggregatedStakedPSYSV3.sol","exportedSymbols":{"AggregatedStakedPSYSV3":[737]},"id":738,"nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".10"],"nodeType":"PragmaDirective","src":"0:24:0"},{"abstract":false,"baseContracts":[],"canonicalName":"AggregatedStakedPSYSV3","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":737,"linearizedBaseContracts":[737],"name":"AggregatedStakedPSYSV3","nameLocation":"36:22:0","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":9,"name":"Approval","nameLocation":"71:8:0","nodeType":"EventDefinition","parameters":{"id":8,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"96:5:0","nodeType":"VariableDeclaration","scope":9,"src":"80:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2,"name":"address","nodeType":"ElementaryTypeName","src":"80:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"119:7:0","nodeType":"VariableDeclaration","scope":9,"src":"103:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4,"name":"address","nodeType":"ElementaryTypeName","src":"103:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"136:5:0","nodeType":"VariableDeclaration","scope":9,"src":"128:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6,"name":"uint256","nodeType":"ElementaryTypeName","src":"128:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"79:63:0"},"src":"65:78:0"},{"anonymous":false,"eventSelector":"87fa03892a0556cb6b8f97e6d533a150d4d55fcbf275fff5fa003fa636bcc7fa","id":15,"name":"AssetConfigUpdated","nameLocation":"154:18:0","nodeType":"EventDefinition","parameters":{"id":14,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11,"indexed":true,"mutability":"mutable","name":"asset","nameLocation":"189:5:0","nodeType":"VariableDeclaration","scope":15,"src":"173:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10,"name":"address","nodeType":"ElementaryTypeName","src":"173:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13,"indexed":false,"mutability":"mutable","name":"emission","nameLocation":"204:8:0","nodeType":"VariableDeclaration","scope":15,"src":"196:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12,"name":"uint256","nodeType":"ElementaryTypeName","src":"196:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"172:41:0"},"src":"148:66:0"},{"anonymous":false,"eventSelector":"5777ca300dfe5bead41006fbce4389794dbc0ed8d6cccebfaf94630aa04184bc","id":21,"name":"AssetIndexUpdated","nameLocation":"225:17:0","nodeType":"EventDefinition","parameters":{"id":20,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17,"indexed":true,"mutability":"mutable","name":"asset","nameLocation":"259:5:0","nodeType":"VariableDeclaration","scope":21,"src":"243:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":16,"name":"address","nodeType":"ElementaryTypeName","src":"243:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":19,"indexed":false,"mutability":"mutable","name":"index","nameLocation":"274:5:0","nodeType":"VariableDeclaration","scope":21,"src":"266:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18,"name":"uint256","nodeType":"ElementaryTypeName","src":"266:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"242:38:0"},"src":"219:62:0"},{"anonymous":false,"eventSelector":"8a05f911d8ab7fc50fec37ef4ba7f9bfcb1a3c191c81dcd824ad0946c4e20d65","id":27,"name":"Cooldown","nameLocation":"292:8:0","nodeType":"EventDefinition","parameters":{"id":26,"nodeType":"ParameterList","parameters":[{"constant":false,"id":23,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"317:4:0","nodeType":"VariableDeclaration","scope":27,"src":"301:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":22,"name":"address","nodeType":"ElementaryTypeName","src":"301:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":25,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"331:6:0","nodeType":"VariableDeclaration","scope":27,"src":"323:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":24,"name":"uint256","nodeType":"ElementaryTypeName","src":"323:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"300:38:0"},"src":"286:53:0"},{"anonymous":false,"eventSelector":"bbf67247b5c97564e30ffc0a355e71c006836de7b9149e09e3d5d6054cb03355","id":31,"name":"CooldownSecondsChanged","nameLocation":"350:22:0","nodeType":"EventDefinition","parameters":{"id":30,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29,"indexed":false,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"381:15:0","nodeType":"VariableDeclaration","scope":31,"src":"373:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28,"name":"uint256","nodeType":"ElementaryTypeName","src":"373:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"372:25:0"},"src":"344:54:0"},{"anonymous":false,"eventSelector":"e8d51c8e11bd570db1734c8ec775785330e77007feed45c43b608ef33ff914bd","id":39,"name":"DelegateChanged","nameLocation":"409:15:0","nodeType":"EventDefinition","parameters":{"id":38,"nodeType":"ParameterList","parameters":[{"constant":false,"id":33,"indexed":true,"mutability":"mutable","name":"delegator","nameLocation":"441:9:0","nodeType":"VariableDeclaration","scope":39,"src":"425:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":32,"name":"address","nodeType":"ElementaryTypeName","src":"425:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":35,"indexed":true,"mutability":"mutable","name":"delegatee","nameLocation":"468:9:0","nodeType":"VariableDeclaration","scope":39,"src":"452:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":34,"name":"address","nodeType":"ElementaryTypeName","src":"452:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37,"indexed":false,"mutability":"mutable","name":"delegationType","nameLocation":"485:14:0","nodeType":"VariableDeclaration","scope":39,"src":"479:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":36,"name":"uint8","nodeType":"ElementaryTypeName","src":"479:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"424:76:0"},"src":"403:98:0"},{"anonymous":false,"eventSelector":"a0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f","id":47,"name":"DelegatedPowerChanged","nameLocation":"512:21:0","nodeType":"EventDefinition","parameters":{"id":46,"nodeType":"ParameterList","parameters":[{"constant":false,"id":41,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"550:4:0","nodeType":"VariableDeclaration","scope":47,"src":"534:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":40,"name":"address","nodeType":"ElementaryTypeName","src":"534:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":43,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"564:6:0","nodeType":"VariableDeclaration","scope":47,"src":"556:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":42,"name":"uint256","nodeType":"ElementaryTypeName","src":"556:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":45,"indexed":false,"mutability":"mutable","name":"delegationType","nameLocation":"578:14:0","nodeType":"VariableDeclaration","scope":47,"src":"572:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":44,"name":"uint8","nodeType":"ElementaryTypeName","src":"572:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"533:60:0"},"src":"506:88:0"},{"anonymous":false,"eventSelector":"a9c433f9734baa3cf48b209454bb0ace054e191f677ba50e74b696c0d35ef262","id":51,"name":"ExchangeRateChanged","nameLocation":"605:19:0","nodeType":"EventDefinition","parameters":{"id":50,"nodeType":"ParameterList","parameters":[{"constant":false,"id":49,"indexed":false,"mutability":"mutable","name":"exchangeRate","nameLocation":"633:12:0","nodeType":"VariableDeclaration","scope":51,"src":"625:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":48,"name":"uint216","nodeType":"ElementaryTypeName","src":"625:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"624:22:0"},"src":"599:48:0"},{"anonymous":false,"eventSelector":"278e51d3323fbf18b9fb8df3f8b97e31b145bc1146c52e764cf4aa1bfc4ba17d","id":55,"name":"FundsReturned","nameLocation":"658:13:0","nodeType":"EventDefinition","parameters":{"id":54,"nodeType":"ParameterList","parameters":[{"constant":false,"id":53,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"680:6:0","nodeType":"VariableDeclaration","scope":55,"src":"672:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":52,"name":"uint256","nodeType":"ElementaryTypeName","src":"672:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"671:16:0"},"src":"652:36:0"},{"anonymous":false,"eventSelector":"62bbced765bccc9ed93d0bae1b2a8c86e13b4663f8bf27d5936d9d619194c8a9","id":59,"name":"GHODebtTokenChanged","nameLocation":"699:19:0","nodeType":"EventDefinition","parameters":{"id":58,"nodeType":"ParameterList","parameters":[{"constant":false,"id":57,"indexed":true,"mutability":"mutable","name":"newDebtToken","nameLocation":"735:12:0","nodeType":"VariableDeclaration","scope":59,"src":"719:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":56,"name":"address","nodeType":"ElementaryTypeName","src":"719:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"718:30:0"},"src":"693:56:0"},{"anonymous":false,"eventSelector":"b79c2d6c7f5c95eec9dc05affc0ed002620a4ec6d72b7b0744cc8638168c600a","id":63,"name":"MaxSlashablePercentageChanged","nameLocation":"760:29:0","nodeType":"EventDefinition","parameters":{"id":62,"nodeType":"ParameterList","parameters":[{"constant":false,"id":61,"indexed":false,"mutability":"mutable","name":"newPercentage","nameLocation":"798:13:0","nodeType":"VariableDeclaration","scope":63,"src":"790:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":60,"name":"uint256","nodeType":"ElementaryTypeName","src":"790:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"789:23:0"},"src":"754:59:0"},{"anonymous":false,"eventSelector":"c3d1bf52795a20771ee6de3e59948fd83e10db956122d4709a3b86c512963855","id":69,"name":"PendingAdminChanged","nameLocation":"824:19:0","nodeType":"EventDefinition","parameters":{"id":68,"nodeType":"ParameterList","parameters":[{"constant":false,"id":65,"indexed":true,"mutability":"mutable","name":"newPendingAdmin","nameLocation":"860:15:0","nodeType":"VariableDeclaration","scope":69,"src":"844:31:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":64,"name":"address","nodeType":"ElementaryTypeName","src":"844:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":67,"indexed":false,"mutability":"mutable","name":"role","nameLocation":"885:4:0","nodeType":"VariableDeclaration","scope":69,"src":"877:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":66,"name":"uint256","nodeType":"ElementaryTypeName","src":"877:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"843:47:0"},"src":"818:73:0"},{"anonymous":false,"eventSelector":"3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc","id":79,"name":"Redeem","nameLocation":"902:6:0","nodeType":"EventDefinition","parameters":{"id":78,"nodeType":"ParameterList","parameters":[{"constant":false,"id":71,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"925:4:0","nodeType":"VariableDeclaration","scope":79,"src":"909:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":70,"name":"address","nodeType":"ElementaryTypeName","src":"909:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":73,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"947:2:0","nodeType":"VariableDeclaration","scope":79,"src":"931:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":72,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":75,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"959:6:0","nodeType":"VariableDeclaration","scope":79,"src":"951:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":74,"name":"uint256","nodeType":"ElementaryTypeName","src":"951:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":77,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"975:6:0","nodeType":"VariableDeclaration","scope":79,"src":"967:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":76,"name":"uint256","nodeType":"ElementaryTypeName","src":"967:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"908:74:0"},"src":"896:87:0"},{"anonymous":false,"eventSelector":"2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76","id":85,"name":"RewardsAccrued","nameLocation":"994:14:0","nodeType":"EventDefinition","parameters":{"id":84,"nodeType":"ParameterList","parameters":[{"constant":false,"id":81,"indexed":false,"mutability":"mutable","name":"user","nameLocation":"1017:4:0","nodeType":"VariableDeclaration","scope":85,"src":"1009:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":80,"name":"address","nodeType":"ElementaryTypeName","src":"1009:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":83,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1031:6:0","nodeType":"VariableDeclaration","scope":85,"src":"1023:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":82,"name":"uint256","nodeType":"ElementaryTypeName","src":"1023:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1008:30:0"},"src":"988:51:0"},{"anonymous":false,"eventSelector":"9310ccfcb8de723f578a9e4282ea9f521f05ae40dc08f3068dfad528a65ee3c7","id":93,"name":"RewardsClaimed","nameLocation":"1050:14:0","nodeType":"EventDefinition","parameters":{"id":92,"nodeType":"ParameterList","parameters":[{"constant":false,"id":87,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"1081:4:0","nodeType":"VariableDeclaration","scope":93,"src":"1065:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":86,"name":"address","nodeType":"ElementaryTypeName","src":"1065:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":89,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"1103:2:0","nodeType":"VariableDeclaration","scope":93,"src":"1087:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":88,"name":"address","nodeType":"ElementaryTypeName","src":"1087:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":91,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1115:6:0","nodeType":"VariableDeclaration","scope":93,"src":"1107:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":90,"name":"uint256","nodeType":"ElementaryTypeName","src":"1107:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1064:58:0"},"src":"1044:79:0"},{"anonymous":false,"eventSelector":"83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf","id":99,"name":"RoleClaimed","nameLocation":"1134:11:0","nodeType":"EventDefinition","parameters":{"id":98,"nodeType":"ParameterList","parameters":[{"constant":false,"id":95,"indexed":true,"mutability":"mutable","name":"newAdmin","nameLocation":"1162:8:0","nodeType":"VariableDeclaration","scope":99,"src":"1146:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":94,"name":"address","nodeType":"ElementaryTypeName","src":"1146:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":97,"indexed":false,"mutability":"mutable","name":"role","nameLocation":"1180:4:0","nodeType":"VariableDeclaration","scope":99,"src":"1172:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":96,"name":"uint256","nodeType":"ElementaryTypeName","src":"1172:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1145:40:0"},"src":"1128:58:0"},{"anonymous":false,"eventSelector":"4ed05e9673c26d2ed44f7ef6a7f2942df0ee3b5e1e17db4b99f9dcd261a339cd","id":105,"name":"Slashed","nameLocation":"1197:7:0","nodeType":"EventDefinition","parameters":{"id":104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":101,"indexed":true,"mutability":"mutable","name":"destination","nameLocation":"1221:11:0","nodeType":"VariableDeclaration","scope":105,"src":"1205:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":100,"name":"address","nodeType":"ElementaryTypeName","src":"1205:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":103,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"1242:6:0","nodeType":"VariableDeclaration","scope":105,"src":"1234:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":102,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1204:45:0"},"src":"1191:59:0"},{"anonymous":false,"eventSelector":"6b55165a8dae04eeace47372de7a71df552116e1e9ceb87df7ffc9b10c83302a","id":109,"name":"SlashingExitWindowDurationChanged","nameLocation":"1261:33:0","nodeType":"EventDefinition","parameters":{"id":108,"nodeType":"ParameterList","parameters":[{"constant":false,"id":107,"indexed":false,"mutability":"mutable","name":"windowSeconds","nameLocation":"1303:13:0","nodeType":"VariableDeclaration","scope":109,"src":"1295:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":106,"name":"uint256","nodeType":"ElementaryTypeName","src":"1295:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1294:23:0"},"src":"1255:63:0"},{"anonymous":false,"eventSelector":"cdee157e87ba915be681d4fa3f3d511afe7348eca06448a3accd6ac227fa40af","id":111,"name":"SlashingSettled","nameLocation":"1329:15:0","nodeType":"EventDefinition","parameters":{"id":110,"nodeType":"ParameterList","parameters":[],"src":"1344:2:0"},"src":"1323:24:0"},{"anonymous":false,"eventSelector":"6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc","id":121,"name":"Staked","nameLocation":"1358:6:0","nodeType":"EventDefinition","parameters":{"id":120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":113,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"1381:4:0","nodeType":"VariableDeclaration","scope":121,"src":"1365:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":112,"name":"address","nodeType":"ElementaryTypeName","src":"1365:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":115,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"1403:2:0","nodeType":"VariableDeclaration","scope":121,"src":"1387:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":114,"name":"address","nodeType":"ElementaryTypeName","src":"1387:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":117,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"1415:6:0","nodeType":"VariableDeclaration","scope":121,"src":"1407:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":116,"name":"uint256","nodeType":"ElementaryTypeName","src":"1407:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":119,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"1431:6:0","nodeType":"VariableDeclaration","scope":121,"src":"1423:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":118,"name":"uint256","nodeType":"ElementaryTypeName","src":"1423:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1364:74:0"},"src":"1352:87:0"},{"anonymous":false,"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":129,"name":"Transfer","nameLocation":"1450:8:0","nodeType":"EventDefinition","parameters":{"id":128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":123,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"1475:4:0","nodeType":"VariableDeclaration","scope":129,"src":"1459:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":122,"name":"address","nodeType":"ElementaryTypeName","src":"1459:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":125,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"1497:2:0","nodeType":"VariableDeclaration","scope":129,"src":"1481:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":124,"name":"address","nodeType":"ElementaryTypeName","src":"1481:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":127,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"1509:5:0","nodeType":"VariableDeclaration","scope":129,"src":"1501:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":126,"name":"uint256","nodeType":"ElementaryTypeName","src":"1501:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1458:57:0"},"src":"1444:72:0"},{"anonymous":false,"eventSelector":"bb123b5c06d5408bbea3c4fef481578175cfb432e3b482c6186f02ed9086585b","id":137,"name":"UserIndexUpdated","nameLocation":"1527:16:0","nodeType":"EventDefinition","parameters":{"id":136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":131,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"1560:4:0","nodeType":"VariableDeclaration","scope":137,"src":"1544:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":130,"name":"address","nodeType":"ElementaryTypeName","src":"1544:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":133,"indexed":true,"mutability":"mutable","name":"asset","nameLocation":"1582:5:0","nodeType":"VariableDeclaration","scope":137,"src":"1566:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":132,"name":"address","nodeType":"ElementaryTypeName","src":"1566:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":135,"indexed":false,"mutability":"mutable","name":"index","nameLocation":"1597:5:0","nodeType":"VariableDeclaration","scope":137,"src":"1589:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":134,"name":"uint256","nodeType":"ElementaryTypeName","src":"1589:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1543:60:0"},"src":"1521:83:0"},{"canonicalName":"AggregatedStakedPSYSV3.AssetConfigInput","id":144,"members":[{"constant":false,"id":139,"mutability":"mutable","name":"emissionPerSecond","nameLocation":"1652:17:0","nodeType":"VariableDeclaration","scope":144,"src":"1644:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":138,"name":"uint128","nodeType":"ElementaryTypeName","src":"1644:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":141,"mutability":"mutable","name":"totalStaked","nameLocation":"1687:11:0","nodeType":"VariableDeclaration","scope":144,"src":"1679:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":140,"name":"uint256","nodeType":"ElementaryTypeName","src":"1679:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":143,"mutability":"mutable","name":"underlyingAsset","nameLocation":"1716:15:0","nodeType":"VariableDeclaration","scope":144,"src":"1708:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":142,"name":"address","nodeType":"ElementaryTypeName","src":"1708:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AssetConfigInput","nameLocation":"1617:16:0","nodeType":"StructDefinition","scope":737,"src":"1610:128:0","visibility":"public"},{"canonicalName":"AggregatedStakedPSYSV3.ExchangeRateSnapshot","id":149,"members":[{"constant":false,"id":146,"mutability":"mutable","name":"blockNumber","nameLocation":"1789:11:0","nodeType":"VariableDeclaration","scope":149,"src":"1782:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":145,"name":"uint40","nodeType":"ElementaryTypeName","src":"1782:6:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":148,"mutability":"mutable","name":"value","nameLocation":"1818:5:0","nodeType":"VariableDeclaration","scope":149,"src":"1810:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":147,"name":"uint216","nodeType":"ElementaryTypeName","src":"1810:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"name":"ExchangeRateSnapshot","nameLocation":"1751:20:0","nodeType":"StructDefinition","scope":737,"src":"1744:86:0","visibility":"public"},{"functionSelector":"dbc0ed8a","id":154,"implemented":false,"kind":"function","modifiers":[],"name":"CLAIM_HELPER_ROLE","nameLocation":"1845:17:0","nodeType":"FunctionDefinition","parameters":{"id":150,"nodeType":"ParameterList","parameters":[],"src":"1862:2:0"},"returnParameters":{"id":153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":152,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":154,"src":"1888:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":151,"name":"uint256","nodeType":"ElementaryTypeName","src":"1888:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1887:9:0"},"scope":737,"src":"1836:61:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"9e3ffce0","id":159,"implemented":false,"kind":"function","modifiers":[],"name":"COOLDOWN_ADMIN_ROLE","nameLocation":"1911:19:0","nodeType":"FunctionDefinition","parameters":{"id":155,"nodeType":"ParameterList","parameters":[],"src":"1930:2:0"},"returnParameters":{"id":158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":157,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":159,"src":"1956:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":156,"name":"uint256","nodeType":"ElementaryTypeName","src":"1956:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1955:9:0"},"scope":737,"src":"1902:63:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"72b49d63","id":164,"implemented":false,"kind":"function","modifiers":[],"name":"COOLDOWN_SECONDS","nameLocation":"1979:16:0","nodeType":"FunctionDefinition","parameters":{"id":160,"nodeType":"ParameterList","parameters":[],"src":"1995:2:0"},"returnParameters":{"id":163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":162,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":164,"src":"2021:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":161,"name":"uint256","nodeType":"ElementaryTypeName","src":"2021:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2020:9:0"},"scope":737,"src":"1970:60:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"aa9fbe02","id":169,"implemented":false,"kind":"function","modifiers":[],"name":"DELEGATE_BY_TYPE_TYPEHASH","nameLocation":"2044:25:0","nodeType":"FunctionDefinition","parameters":{"id":165,"nodeType":"ParameterList","parameters":[],"src":"2069:2:0"},"returnParameters":{"id":168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":167,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":169,"src":"2095:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":166,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2095:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2094:9:0"},"scope":737,"src":"2035:69:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"41cbf54a","id":174,"implemented":false,"kind":"function","modifiers":[],"name":"DELEGATE_TYPEHASH","nameLocation":"2118:17:0","nodeType":"FunctionDefinition","parameters":{"id":170,"nodeType":"ParameterList","parameters":[],"src":"2135:2:0"},"returnParameters":{"id":173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":174,"src":"2161:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":171,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2161:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2160:9:0"},"scope":737,"src":"2109:61:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"919cd40f","id":179,"implemented":false,"kind":"function","modifiers":[],"name":"DISTRIBUTION_END","nameLocation":"2184:16:0","nodeType":"FunctionDefinition","parameters":{"id":175,"nodeType":"ParameterList","parameters":[],"src":"2200:2:0"},"returnParameters":{"id":178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":177,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":179,"src":"2226:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":176,"name":"uint256","nodeType":"ElementaryTypeName","src":"2226:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2225:9:0"},"scope":737,"src":"2175:60:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"3644e515","id":184,"implemented":false,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"2249:16:0","nodeType":"FunctionDefinition","parameters":{"id":180,"nodeType":"ParameterList","parameters":[],"src":"2265:2:0"},"returnParameters":{"id":183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":184,"src":"2291:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":181,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2291:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2290:9:0"},"scope":737,"src":"2240:60:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"78160376","id":189,"implemented":false,"kind":"function","modifiers":[],"name":"EIP712_REVISION","nameLocation":"2314:15:0","nodeType":"FunctionDefinition","parameters":{"id":185,"nodeType":"ParameterList","parameters":[],"src":"2329:2:0"},"returnParameters":{"id":188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":187,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":189,"src":"2355:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":186,"name":"bytes","nodeType":"ElementaryTypeName","src":"2355:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2354:14:0"},"scope":737,"src":"2305:64:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"cbcbb507","id":194,"implemented":false,"kind":"function","modifiers":[],"name":"EMISSION_MANAGER","nameLocation":"2383:16:0","nodeType":"FunctionDefinition","parameters":{"id":190,"nodeType":"ParameterList","parameters":[],"src":"2399:2:0"},"returnParameters":{"id":193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":192,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":194,"src":"2425:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":191,"name":"address","nodeType":"ElementaryTypeName","src":"2425:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2424:9:0"},"scope":737,"src":"2374:60:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"8e9b2ca4","id":199,"implemented":false,"kind":"function","modifiers":[],"name":"EXCHANGE_RATE_UNIT","nameLocation":"2448:18:0","nodeType":"FunctionDefinition","parameters":{"id":195,"nodeType":"ParameterList","parameters":[],"src":"2466:2:0"},"returnParameters":{"id":198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":197,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":199,"src":"2492:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":196,"name":"uint256","nodeType":"ElementaryTypeName","src":"2492:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2491:9:0"},"scope":737,"src":"2439:62:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"58146d17","id":204,"implemented":false,"kind":"function","modifiers":[],"name":"INITIAL_EXCHANGE_RATE","nameLocation":"2515:21:0","nodeType":"FunctionDefinition","parameters":{"id":200,"nodeType":"ParameterList","parameters":[],"src":"2536:2:0"},"returnParameters":{"id":203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":202,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":204,"src":"2562:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":201,"name":"uint216","nodeType":"ElementaryTypeName","src":"2562:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"2561:9:0"},"scope":737,"src":"2506:65:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"6198e135","id":209,"implemented":false,"kind":"function","modifiers":[],"name":"LOWER_BOUND","nameLocation":"2585:11:0","nodeType":"FunctionDefinition","parameters":{"id":205,"nodeType":"ParameterList","parameters":[],"src":"2596:2:0"},"returnParameters":{"id":208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":207,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":209,"src":"2622:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":206,"name":"uint256","nodeType":"ElementaryTypeName","src":"2622:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2621:9:0"},"scope":737,"src":"2576:55:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"30adf81f","id":214,"implemented":false,"kind":"function","modifiers":[],"name":"PERMIT_TYPEHASH","nameLocation":"2645:15:0","nodeType":"FunctionDefinition","parameters":{"id":210,"nodeType":"ParameterList","parameters":[],"src":"2660:2:0"},"returnParameters":{"id":213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":212,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":214,"src":"2686:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":211,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2686:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2685:9:0"},"scope":737,"src":"2636:59:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"aaf5eb68","id":219,"implemented":false,"kind":"function","modifiers":[],"name":"PRECISION","nameLocation":"2709:9:0","nodeType":"FunctionDefinition","parameters":{"id":215,"nodeType":"ParameterList","parameters":[],"src":"2718:2:0"},"returnParameters":{"id":218,"nodeType":"ParameterList","parameters":[{"constant":false,"id":217,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":219,"src":"2744:5:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":216,"name":"uint8","nodeType":"ElementaryTypeName","src":"2744:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2743:7:0"},"scope":737,"src":"2700:51:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"dde43cba","id":224,"implemented":false,"kind":"function","modifiers":[],"name":"REVISION","nameLocation":"2765:8:0","nodeType":"FunctionDefinition","parameters":{"id":220,"nodeType":"ParameterList","parameters":[],"src":"2773:2:0"},"returnParameters":{"id":223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":222,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":224,"src":"2799:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":221,"name":"uint256","nodeType":"ElementaryTypeName","src":"2799:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2798:9:0"},"scope":737,"src":"2756:52:0","stateMutability":"pure","virtual":false,"visibility":"external"},{"functionSelector":"946776cd","id":229,"implemented":false,"kind":"function","modifiers":[],"name":"REWARDS_VAULT","nameLocation":"2822:13:0","nodeType":"FunctionDefinition","parameters":{"id":225,"nodeType":"ParameterList","parameters":[],"src":"2835:2:0"},"returnParameters":{"id":228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":229,"src":"2861:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":226,"name":"address","nodeType":"ElementaryTypeName","src":"2861:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2860:9:0"},"scope":737,"src":"2813:57:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"99248ea7","id":234,"implemented":false,"kind":"function","modifiers":[],"name":"REWARD_TOKEN","nameLocation":"2884:12:0","nodeType":"FunctionDefinition","parameters":{"id":230,"nodeType":"ParameterList","parameters":[],"src":"2896:2:0"},"returnParameters":{"id":233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":232,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":234,"src":"2922:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":231,"name":"address","nodeType":"ElementaryTypeName","src":"2922:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2921:9:0"},"scope":737,"src":"2875:56:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"8c9a281d","id":239,"implemented":false,"kind":"function","modifiers":[],"name":"SLASH_ADMIN_ROLE","nameLocation":"2945:16:0","nodeType":"FunctionDefinition","parameters":{"id":235,"nodeType":"ParameterList","parameters":[],"src":"2961:2:0"},"returnParameters":{"id":238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":237,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":239,"src":"2987:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":236,"name":"uint256","nodeType":"ElementaryTypeName","src":"2987:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2986:9:0"},"scope":737,"src":"2936:60:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"312f6b83","id":244,"implemented":false,"kind":"function","modifiers":[],"name":"STAKED_TOKEN","nameLocation":"3010:12:0","nodeType":"FunctionDefinition","parameters":{"id":240,"nodeType":"ParameterList","parameters":[],"src":"3022:2:0"},"returnParameters":{"id":243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":242,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":244,"src":"3048:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":241,"name":"address","nodeType":"ElementaryTypeName","src":"3048:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3047:9:0"},"scope":737,"src":"3001:56:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"359c4a96","id":249,"implemented":false,"kind":"function","modifiers":[],"name":"UNSTAKE_WINDOW","nameLocation":"3071:14:0","nodeType":"FunctionDefinition","parameters":{"id":245,"nodeType":"ParameterList","parameters":[],"src":"3085:2:0"},"returnParameters":{"id":248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":247,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":249,"src":"3111:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":246,"name":"uint256","nodeType":"ElementaryTypeName","src":"3111:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3110:9:0"},"scope":737,"src":"3062:58:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"c3863ada","id":254,"implemented":false,"kind":"function","modifiers":[],"name":"_aaveGovernance","nameLocation":"3134:15:0","nodeType":"FunctionDefinition","parameters":{"id":250,"nodeType":"ParameterList","parameters":[],"src":"3149:2:0"},"returnParameters":{"id":253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":252,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":254,"src":"3175:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":251,"name":"address","nodeType":"ElementaryTypeName","src":"3175:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3174:9:0"},"scope":737,"src":"3125:59:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"b9844d8d","id":261,"implemented":false,"kind":"function","modifiers":[],"name":"_nonces","nameLocation":"3198:7:0","nodeType":"FunctionDefinition","parameters":{"id":257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":256,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":261,"src":"3206:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":255,"name":"address","nodeType":"ElementaryTypeName","src":"3206:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3205:9:0"},"returnParameters":{"id":260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":259,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":261,"src":"3238:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":258,"name":"uint256","nodeType":"ElementaryTypeName","src":"3238:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3237:9:0"},"scope":737,"src":"3189:58:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"5b3cc0cf","id":272,"implemented":false,"kind":"function","modifiers":[],"name":"_votingSnapshots","nameLocation":"3261:16:0","nodeType":"FunctionDefinition","parameters":{"id":266,"nodeType":"ParameterList","parameters":[{"constant":false,"id":263,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":272,"src":"3278:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":262,"name":"address","nodeType":"ElementaryTypeName","src":"3278:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":265,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":272,"src":"3287:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":264,"name":"uint256","nodeType":"ElementaryTypeName","src":"3287:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3277:18:0"},"returnParameters":{"id":271,"nodeType":"ParameterList","parameters":[{"constant":false,"id":268,"mutability":"mutable","name":"blockNumber","nameLocation":"3327:11:0","nodeType":"VariableDeclaration","scope":272,"src":"3319:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":267,"name":"uint128","nodeType":"ElementaryTypeName","src":"3319:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":270,"mutability":"mutable","name":"value","nameLocation":"3348:5:0","nodeType":"VariableDeclaration","scope":272,"src":"3340:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":269,"name":"uint128","nodeType":"ElementaryTypeName","src":"3340:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"3318:36:0"},"scope":737,"src":"3252:103:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7bb73c97","id":279,"implemented":false,"kind":"function","modifiers":[],"name":"_votingSnapshotsCounts","nameLocation":"3369:22:0","nodeType":"FunctionDefinition","parameters":{"id":275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":274,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":279,"src":"3392:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":273,"name":"address","nodeType":"ElementaryTypeName","src":"3392:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3391:9:0"},"returnParameters":{"id":278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":277,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":279,"src":"3424:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":276,"name":"uint256","nodeType":"ElementaryTypeName","src":"3424:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3423:9:0"},"scope":737,"src":"3360:73:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"dd62ed3e","id":288,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3447:9:0","nodeType":"FunctionDefinition","parameters":{"id":284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":281,"mutability":"mutable","name":"owner","nameLocation":"3465:5:0","nodeType":"VariableDeclaration","scope":288,"src":"3457:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":280,"name":"address","nodeType":"ElementaryTypeName","src":"3457:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":283,"mutability":"mutable","name":"spender","nameLocation":"3480:7:0","nodeType":"VariableDeclaration","scope":288,"src":"3472:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":282,"name":"address","nodeType":"ElementaryTypeName","src":"3472:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3456:32:0"},"returnParameters":{"id":287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":286,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":288,"src":"3512:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":285,"name":"uint256","nodeType":"ElementaryTypeName","src":"3512:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3511:9:0"},"scope":737,"src":"3438:83:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"095ea7b3","id":297,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3535:7:0","nodeType":"FunctionDefinition","parameters":{"id":293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":290,"mutability":"mutable","name":"spender","nameLocation":"3551:7:0","nodeType":"VariableDeclaration","scope":297,"src":"3543:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":289,"name":"address","nodeType":"ElementaryTypeName","src":"3543:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":292,"mutability":"mutable","name":"amount","nameLocation":"3568:6:0","nodeType":"VariableDeclaration","scope":297,"src":"3560:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":291,"name":"uint256","nodeType":"ElementaryTypeName","src":"3560:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3542:33:0"},"returnParameters":{"id":296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":295,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":297,"src":"3594:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":294,"name":"bool","nodeType":"ElementaryTypeName","src":"3594:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3593:6:0"},"scope":737,"src":"3526:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"f11b8188","id":308,"implemented":false,"kind":"function","modifiers":[],"name":"assets","nameLocation":"3614:6:0","nodeType":"FunctionDefinition","parameters":{"id":300,"nodeType":"ParameterList","parameters":[{"constant":false,"id":299,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":308,"src":"3621:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":298,"name":"address","nodeType":"ElementaryTypeName","src":"3621:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3620:9:0"},"returnParameters":{"id":307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":302,"mutability":"mutable","name":"emissionPerSecond","nameLocation":"3685:17:0","nodeType":"VariableDeclaration","scope":308,"src":"3677:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":301,"name":"uint128","nodeType":"ElementaryTypeName","src":"3677:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":304,"mutability":"mutable","name":"lastUpdateTimestamp","nameLocation":"3712:19:0","nodeType":"VariableDeclaration","scope":308,"src":"3704:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":303,"name":"uint128","nodeType":"ElementaryTypeName","src":"3704:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":306,"mutability":"mutable","name":"index","nameLocation":"3741:5:0","nodeType":"VariableDeclaration","scope":308,"src":"3733:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":305,"name":"uint256","nodeType":"ElementaryTypeName","src":"3733:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3676:71:0"},"scope":737,"src":"3605:143:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"70a08231","id":315,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"3762:9:0","nodeType":"FunctionDefinition","parameters":{"id":311,"nodeType":"ParameterList","parameters":[{"constant":false,"id":310,"mutability":"mutable","name":"account","nameLocation":"3780:7:0","nodeType":"VariableDeclaration","scope":315,"src":"3772:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":309,"name":"address","nodeType":"ElementaryTypeName","src":"3772:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3771:17:0"},"returnParameters":{"id":314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":313,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":315,"src":"3812:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":312,"name":"uint256","nodeType":"ElementaryTypeName","src":"3812:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3811:9:0"},"scope":737,"src":"3753:68:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"9a99b4f0","id":322,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewards","nameLocation":"3835:12:0","nodeType":"FunctionDefinition","parameters":{"id":320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":317,"mutability":"mutable","name":"to","nameLocation":"3856:2:0","nodeType":"VariableDeclaration","scope":322,"src":"3848:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":316,"name":"address","nodeType":"ElementaryTypeName","src":"3848:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":319,"mutability":"mutable","name":"amount","nameLocation":"3868:6:0","nodeType":"VariableDeclaration","scope":322,"src":"3860:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":318,"name":"uint256","nodeType":"ElementaryTypeName","src":"3860:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3847:28:0"},"returnParameters":{"id":321,"nodeType":"ParameterList","parameters":[],"src":"3884:0:0"},"scope":737,"src":"3826:59:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"eab52318","id":331,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsAndRedeem","nameLocation":"3899:21:0","nodeType":"FunctionDefinition","parameters":{"id":329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":324,"mutability":"mutable","name":"to","nameLocation":"3929:2:0","nodeType":"VariableDeclaration","scope":331,"src":"3921:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":323,"name":"address","nodeType":"ElementaryTypeName","src":"3921:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":326,"mutability":"mutable","name":"claimAmount","nameLocation":"3941:11:0","nodeType":"VariableDeclaration","scope":331,"src":"3933:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":325,"name":"uint256","nodeType":"ElementaryTypeName","src":"3933:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":328,"mutability":"mutable","name":"redeemAmount","nameLocation":"3962:12:0","nodeType":"VariableDeclaration","scope":331,"src":"3954:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":327,"name":"uint256","nodeType":"ElementaryTypeName","src":"3954:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3920:55:0"},"returnParameters":{"id":330,"nodeType":"ParameterList","parameters":[],"src":"3984:0:0"},"scope":737,"src":"3890:95:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"9c9b5154","id":342,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsAndRedeemOnBehalf","nameLocation":"3999:29:0","nodeType":"FunctionDefinition","parameters":{"id":340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":333,"mutability":"mutable","name":"from","nameLocation":"4037:4:0","nodeType":"VariableDeclaration","scope":342,"src":"4029:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":332,"name":"address","nodeType":"ElementaryTypeName","src":"4029:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":335,"mutability":"mutable","name":"to","nameLocation":"4051:2:0","nodeType":"VariableDeclaration","scope":342,"src":"4043:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":334,"name":"address","nodeType":"ElementaryTypeName","src":"4043:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":337,"mutability":"mutable","name":"claimAmount","nameLocation":"4063:11:0","nodeType":"VariableDeclaration","scope":342,"src":"4055:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":336,"name":"uint256","nodeType":"ElementaryTypeName","src":"4055:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":339,"mutability":"mutable","name":"redeemAmount","nameLocation":"4084:12:0","nodeType":"VariableDeclaration","scope":342,"src":"4076:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":338,"name":"uint256","nodeType":"ElementaryTypeName","src":"4076:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4028:69:0"},"returnParameters":{"id":341,"nodeType":"ParameterList","parameters":[],"src":"4114:0:0"},"scope":737,"src":"3990:125:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"955e18af","id":351,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsAndStake","nameLocation":"4129:20:0","nodeType":"FunctionDefinition","parameters":{"id":347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":344,"mutability":"mutable","name":"to","nameLocation":"4158:2:0","nodeType":"VariableDeclaration","scope":351,"src":"4150:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":343,"name":"address","nodeType":"ElementaryTypeName","src":"4150:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":346,"mutability":"mutable","name":"amount","nameLocation":"4170:6:0","nodeType":"VariableDeclaration","scope":351,"src":"4162:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":345,"name":"uint256","nodeType":"ElementaryTypeName","src":"4162:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4149:28:0"},"returnParameters":{"id":350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":349,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":351,"src":"4196:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":348,"name":"uint256","nodeType":"ElementaryTypeName","src":"4196:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4195:9:0"},"scope":737,"src":"4120:85:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"c18f539a","id":362,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsAndStakeOnBehalf","nameLocation":"4219:28:0","nodeType":"FunctionDefinition","parameters":{"id":358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":353,"mutability":"mutable","name":"from","nameLocation":"4256:4:0","nodeType":"VariableDeclaration","scope":362,"src":"4248:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":352,"name":"address","nodeType":"ElementaryTypeName","src":"4248:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":355,"mutability":"mutable","name":"to","nameLocation":"4270:2:0","nodeType":"VariableDeclaration","scope":362,"src":"4262:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":354,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":357,"mutability":"mutable","name":"amount","nameLocation":"4282:6:0","nodeType":"VariableDeclaration","scope":362,"src":"4274:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":356,"name":"uint256","nodeType":"ElementaryTypeName","src":"4274:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4247:42:0"},"returnParameters":{"id":361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":360,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":362,"src":"4308:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":359,"name":"uint256","nodeType":"ElementaryTypeName","src":"4308:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4307:9:0"},"scope":737,"src":"4210:107:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"20fb80b5","id":373,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsOnBehalf","nameLocation":"4331:20:0","nodeType":"FunctionDefinition","parameters":{"id":369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":364,"mutability":"mutable","name":"from","nameLocation":"4360:4:0","nodeType":"VariableDeclaration","scope":373,"src":"4352:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":363,"name":"address","nodeType":"ElementaryTypeName","src":"4352:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":366,"mutability":"mutable","name":"to","nameLocation":"4374:2:0","nodeType":"VariableDeclaration","scope":373,"src":"4366:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":365,"name":"address","nodeType":"ElementaryTypeName","src":"4366:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":368,"mutability":"mutable","name":"amount","nameLocation":"4386:6:0","nodeType":"VariableDeclaration","scope":373,"src":"4378:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":367,"name":"uint256","nodeType":"ElementaryTypeName","src":"4378:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4351:42:0"},"returnParameters":{"id":372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":371,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":373,"src":"4412:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":370,"name":"uint256","nodeType":"ElementaryTypeName","src":"4412:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4411:9:0"},"scope":737,"src":"4322:99:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"fde9eb69","id":378,"implemented":false,"kind":"function","modifiers":[],"name":"claimRoleAdmin","nameLocation":"4435:14:0","nodeType":"FunctionDefinition","parameters":{"id":376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":375,"mutability":"mutable","name":"role","nameLocation":"4458:4:0","nodeType":"VariableDeclaration","scope":378,"src":"4450:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":374,"name":"uint256","nodeType":"ElementaryTypeName","src":"4450:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4449:14:0"},"returnParameters":{"id":377,"nodeType":"ParameterList","parameters":[],"src":"4472:0:0"},"scope":737,"src":"4426:47:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"b2a5dbfa","id":385,"implemented":false,"kind":"function","modifiers":[],"name":"configureAssets","nameLocation":"4487:15:0","nodeType":"FunctionDefinition","parameters":{"id":383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":382,"mutability":"mutable","name":"assetsConfigInput","nameLocation":"4529:17:0","nodeType":"VariableDeclaration","scope":385,"src":"4503:43:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$144_memory_ptr_$dyn_memory_ptr","typeString":"struct AggregatedStakedPSYSV3.AssetConfigInput[]"},"typeName":{"baseType":{"id":380,"nodeType":"UserDefinedTypeName","pathNode":{"id":379,"name":"AssetConfigInput","nameLocations":["4503:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":144,"src":"4503:16:0"},"referencedDeclaration":144,"src":"4503:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$144_storage_ptr","typeString":"struct AggregatedStakedPSYSV3.AssetConfigInput"}},"id":381,"nodeType":"ArrayTypeName","src":"4503:18:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$144_storage_$dyn_storage_ptr","typeString":"struct AggregatedStakedPSYSV3.AssetConfigInput[]"}},"visibility":"internal"}],"src":"4502:45:0"},"returnParameters":{"id":384,"nodeType":"ParameterList","parameters":[],"src":"4556:0:0"},"scope":737,"src":"4478:79:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"787a08a6","id":388,"implemented":false,"kind":"function","modifiers":[],"name":"cooldown","nameLocation":"4571:8:0","nodeType":"FunctionDefinition","parameters":{"id":386,"nodeType":"ParameterList","parameters":[],"src":"4579:2:0"},"returnParameters":{"id":387,"nodeType":"ParameterList","parameters":[],"src":"4590:0:0"},"scope":737,"src":"4562:29:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"250201db","id":393,"implemented":false,"kind":"function","modifiers":[],"name":"cooldownOnBehalfOf","nameLocation":"4605:18:0","nodeType":"FunctionDefinition","parameters":{"id":391,"nodeType":"ParameterList","parameters":[{"constant":false,"id":390,"mutability":"mutable","name":"from","nameLocation":"4632:4:0","nodeType":"VariableDeclaration","scope":393,"src":"4624:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":389,"name":"address","nodeType":"ElementaryTypeName","src":"4624:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4623:14:0"},"returnParameters":{"id":392,"nodeType":"ParameterList","parameters":[],"src":"4646:0:0"},"scope":737,"src":"4596:51:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"313ce567","id":398,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"4661:8:0","nodeType":"FunctionDefinition","parameters":{"id":394,"nodeType":"ParameterList","parameters":[],"src":"4669:2:0"},"returnParameters":{"id":397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":396,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":398,"src":"4695:5:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":395,"name":"uint8","nodeType":"ElementaryTypeName","src":"4695:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4694:7:0"},"scope":737,"src":"4652:50:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"a457c2d7","id":407,"implemented":false,"kind":"function","modifiers":[],"name":"decreaseAllowance","nameLocation":"4716:17:0","nodeType":"FunctionDefinition","parameters":{"id":403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":400,"mutability":"mutable","name":"spender","nameLocation":"4742:7:0","nodeType":"VariableDeclaration","scope":407,"src":"4734:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":399,"name":"address","nodeType":"ElementaryTypeName","src":"4734:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":402,"mutability":"mutable","name":"subtractedValue","nameLocation":"4759:15:0","nodeType":"VariableDeclaration","scope":407,"src":"4751:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":401,"name":"uint256","nodeType":"ElementaryTypeName","src":"4751:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4733:42:0"},"returnParameters":{"id":406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":407,"src":"4794:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":404,"name":"bool","nodeType":"ElementaryTypeName","src":"4794:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4793:6:0"},"scope":737,"src":"4707:93:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"5c19a95c","id":412,"implemented":false,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"4814:8:0","nodeType":"FunctionDefinition","parameters":{"id":410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":409,"mutability":"mutable","name":"delegatee","nameLocation":"4831:9:0","nodeType":"VariableDeclaration","scope":412,"src":"4823:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":408,"name":"address","nodeType":"ElementaryTypeName","src":"4823:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4822:19:0"},"returnParameters":{"id":411,"nodeType":"ParameterList","parameters":[],"src":"4850:0:0"},"scope":737,"src":"4805:46:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"c3cda520","id":427,"implemented":false,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"4865:13:0","nodeType":"FunctionDefinition","parameters":{"id":425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":414,"mutability":"mutable","name":"delegatee","nameLocation":"4887:9:0","nodeType":"VariableDeclaration","scope":427,"src":"4879:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":413,"name":"address","nodeType":"ElementaryTypeName","src":"4879:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":416,"mutability":"mutable","name":"nonce","nameLocation":"4906:5:0","nodeType":"VariableDeclaration","scope":427,"src":"4898:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":415,"name":"uint256","nodeType":"ElementaryTypeName","src":"4898:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":418,"mutability":"mutable","name":"expiry","nameLocation":"4921:6:0","nodeType":"VariableDeclaration","scope":427,"src":"4913:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":417,"name":"uint256","nodeType":"ElementaryTypeName","src":"4913:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":420,"mutability":"mutable","name":"v","nameLocation":"4935:1:0","nodeType":"VariableDeclaration","scope":427,"src":"4929:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":419,"name":"uint8","nodeType":"ElementaryTypeName","src":"4929:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":422,"mutability":"mutable","name":"r","nameLocation":"4946:1:0","nodeType":"VariableDeclaration","scope":427,"src":"4938:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":421,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4938:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":424,"mutability":"mutable","name":"s","nameLocation":"4957:1:0","nodeType":"VariableDeclaration","scope":427,"src":"4949:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":423,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4949:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4878:81:0"},"returnParameters":{"id":426,"nodeType":"ParameterList","parameters":[],"src":"4968:0:0"},"scope":737,"src":"4856:113:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"dc937e1c","id":434,"implemented":false,"kind":"function","modifiers":[],"name":"delegateByType","nameLocation":"4983:14:0","nodeType":"FunctionDefinition","parameters":{"id":432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":429,"mutability":"mutable","name":"delegatee","nameLocation":"5006:9:0","nodeType":"VariableDeclaration","scope":434,"src":"4998:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":428,"name":"address","nodeType":"ElementaryTypeName","src":"4998:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":431,"mutability":"mutable","name":"delegationType","nameLocation":"5023:14:0","nodeType":"VariableDeclaration","scope":434,"src":"5017:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":430,"name":"uint8","nodeType":"ElementaryTypeName","src":"5017:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4997:41:0"},"returnParameters":{"id":433,"nodeType":"ParameterList","parameters":[],"src":"5047:0:0"},"scope":737,"src":"4974:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"f713d8a8","id":451,"implemented":false,"kind":"function","modifiers":[],"name":"delegateByTypeBySig","nameLocation":"5062:19:0","nodeType":"FunctionDefinition","parameters":{"id":449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":436,"mutability":"mutable","name":"delegatee","nameLocation":"5099:9:0","nodeType":"VariableDeclaration","scope":451,"src":"5091:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":435,"name":"address","nodeType":"ElementaryTypeName","src":"5091:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":438,"mutability":"mutable","name":"delegationType","nameLocation":"5124:14:0","nodeType":"VariableDeclaration","scope":451,"src":"5118:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":437,"name":"uint8","nodeType":"ElementaryTypeName","src":"5118:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":440,"mutability":"mutable","name":"nonce","nameLocation":"5156:5:0","nodeType":"VariableDeclaration","scope":451,"src":"5148:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":439,"name":"uint256","nodeType":"ElementaryTypeName","src":"5148:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":442,"mutability":"mutable","name":"expiry","nameLocation":"5179:6:0","nodeType":"VariableDeclaration","scope":451,"src":"5171:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":441,"name":"uint256","nodeType":"ElementaryTypeName","src":"5171:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":444,"mutability":"mutable","name":"v","nameLocation":"5201:1:0","nodeType":"VariableDeclaration","scope":451,"src":"5195:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":443,"name":"uint8","nodeType":"ElementaryTypeName","src":"5195:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":446,"mutability":"mutable","name":"r","nameLocation":"5220:1:0","nodeType":"VariableDeclaration","scope":451,"src":"5212:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":445,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5212:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":448,"mutability":"mutable","name":"s","nameLocation":"5239:1:0","nodeType":"VariableDeclaration","scope":451,"src":"5231:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":447,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5231:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5081:165:0"},"returnParameters":{"id":450,"nodeType":"ParameterList","parameters":[],"src":"5255:0:0"},"scope":737,"src":"5053:203:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"111fd88b","id":458,"implemented":false,"kind":"function","modifiers":[],"name":"getAdmin","nameLocation":"5270:8:0","nodeType":"FunctionDefinition","parameters":{"id":454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":453,"mutability":"mutable","name":"role","nameLocation":"5287:4:0","nodeType":"VariableDeclaration","scope":458,"src":"5279:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":452,"name":"uint256","nodeType":"ElementaryTypeName","src":"5279:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5278:14:0"},"returnParameters":{"id":457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":456,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":458,"src":"5316:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":455,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5315:9:0"},"scope":737,"src":"5261:64:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"616e0bf9","id":463,"implemented":false,"kind":"function","modifiers":[],"name":"getCooldownSeconds","nameLocation":"5339:18:0","nodeType":"FunctionDefinition","parameters":{"id":459,"nodeType":"ParameterList","parameters":[],"src":"5357:2:0"},"returnParameters":{"id":462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":461,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":463,"src":"5383:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":460,"name":"uint256","nodeType":"ElementaryTypeName","src":"5383:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5382:9:0"},"scope":737,"src":"5330:62:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"6f50458d","id":472,"implemented":false,"kind":"function","modifiers":[],"name":"getDelegateeByType","nameLocation":"5406:18:0","nodeType":"FunctionDefinition","parameters":{"id":468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":465,"mutability":"mutable","name":"delegator","nameLocation":"5433:9:0","nodeType":"VariableDeclaration","scope":472,"src":"5425:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":464,"name":"address","nodeType":"ElementaryTypeName","src":"5425:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":467,"mutability":"mutable","name":"delegationType","nameLocation":"5450:14:0","nodeType":"VariableDeclaration","scope":472,"src":"5444:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":466,"name":"uint8","nodeType":"ElementaryTypeName","src":"5444:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"5424:41:0"},"returnParameters":{"id":471,"nodeType":"ParameterList","parameters":[{"constant":false,"id":470,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":472,"src":"5489:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":469,"name":"address","nodeType":"ElementaryTypeName","src":"5489:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5488:9:0"},"scope":737,"src":"5397:101:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"e6aa216c","id":477,"implemented":false,"kind":"function","modifiers":[],"name":"getExchangeRate","nameLocation":"5512:15:0","nodeType":"FunctionDefinition","parameters":{"id":473,"nodeType":"ParameterList","parameters":[],"src":"5527:2:0"},"returnParameters":{"id":476,"nodeType":"ParameterList","parameters":[{"constant":false,"id":475,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":477,"src":"5553:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":474,"name":"uint216","nodeType":"ElementaryTypeName","src":"5553:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"5552:9:0"},"scope":737,"src":"5503:59:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"8ef98e0e","id":485,"implemented":false,"kind":"function","modifiers":[],"name":"getExchangeRateSnapshot","nameLocation":"5576:23:0","nodeType":"FunctionDefinition","parameters":{"id":480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":479,"mutability":"mutable","name":"index","nameLocation":"5607:5:0","nodeType":"VariableDeclaration","scope":485,"src":"5600:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":478,"name":"uint32","nodeType":"ElementaryTypeName","src":"5600:6:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5599:14:0"},"returnParameters":{"id":484,"nodeType":"ParameterList","parameters":[{"constant":false,"id":483,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":485,"src":"5637:27:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$149_memory_ptr","typeString":"struct AggregatedStakedPSYSV3.ExchangeRateSnapshot"},"typeName":{"id":482,"nodeType":"UserDefinedTypeName","pathNode":{"id":481,"name":"ExchangeRateSnapshot","nameLocations":["5637:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":149,"src":"5637:20:0"},"referencedDeclaration":149,"src":"5637:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$149_storage_ptr","typeString":"struct AggregatedStakedPSYSV3.ExchangeRateSnapshot"}},"visibility":"internal"}],"src":"5636:29:0"},"scope":737,"src":"5567:99:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"60ba192b","id":490,"implemented":false,"kind":"function","modifiers":[],"name":"getExchangeRateSnapshotsCount","nameLocation":"5680:29:0","nodeType":"FunctionDefinition","parameters":{"id":486,"nodeType":"ParameterList","parameters":[],"src":"5709:2:0"},"returnParameters":{"id":489,"nodeType":"ParameterList","parameters":[{"constant":false,"id":488,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":490,"src":"5735:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":487,"name":"uint32","nodeType":"ElementaryTypeName","src":"5735:6:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"5734:8:0"},"scope":737,"src":"5671:72:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"f34d96da","id":495,"implemented":false,"kind":"function","modifiers":[],"name":"getMaxSlashablePercentage","nameLocation":"5757:25:0","nodeType":"FunctionDefinition","parameters":{"id":491,"nodeType":"ParameterList","parameters":[],"src":"5782:2:0"},"returnParameters":{"id":494,"nodeType":"ParameterList","parameters":[{"constant":false,"id":493,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":495,"src":"5808:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":492,"name":"uint256","nodeType":"ElementaryTypeName","src":"5808:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5807:9:0"},"scope":737,"src":"5748:69:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"4575e69b","id":502,"implemented":false,"kind":"function","modifiers":[],"name":"getPendingAdmin","nameLocation":"5831:15:0","nodeType":"FunctionDefinition","parameters":{"id":498,"nodeType":"ParameterList","parameters":[{"constant":false,"id":497,"mutability":"mutable","name":"role","nameLocation":"5855:4:0","nodeType":"VariableDeclaration","scope":502,"src":"5847:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":496,"name":"uint256","nodeType":"ElementaryTypeName","src":"5847:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5846:14:0"},"returnParameters":{"id":501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":500,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":502,"src":"5884:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":499,"name":"address","nodeType":"ElementaryTypeName","src":"5884:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5883:9:0"},"scope":737,"src":"5822:71:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"c2ffbb91","id":513,"implemented":false,"kind":"function","modifiers":[],"name":"getPowerAtBlock","nameLocation":"5907:15:0","nodeType":"FunctionDefinition","parameters":{"id":509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":504,"mutability":"mutable","name":"user","nameLocation":"5931:4:0","nodeType":"VariableDeclaration","scope":513,"src":"5923:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":503,"name":"address","nodeType":"ElementaryTypeName","src":"5923:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":506,"mutability":"mutable","name":"blockNumber","nameLocation":"5945:11:0","nodeType":"VariableDeclaration","scope":513,"src":"5937:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":505,"name":"uint256","nodeType":"ElementaryTypeName","src":"5937:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":508,"mutability":"mutable","name":"delegationType","nameLocation":"5964:14:0","nodeType":"VariableDeclaration","scope":513,"src":"5958:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":507,"name":"uint8","nodeType":"ElementaryTypeName","src":"5958:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"5922:57:0"},"returnParameters":{"id":512,"nodeType":"ParameterList","parameters":[{"constant":false,"id":511,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":513,"src":"6003:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":510,"name":"uint256","nodeType":"ElementaryTypeName","src":"6003:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6002:9:0"},"scope":737,"src":"5898:114:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"b2f4201d","id":522,"implemented":false,"kind":"function","modifiers":[],"name":"getPowerCurrent","nameLocation":"6026:15:0","nodeType":"FunctionDefinition","parameters":{"id":518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":515,"mutability":"mutable","name":"user","nameLocation":"6050:4:0","nodeType":"VariableDeclaration","scope":522,"src":"6042:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":514,"name":"address","nodeType":"ElementaryTypeName","src":"6042:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":517,"mutability":"mutable","name":"delegationType","nameLocation":"6062:14:0","nodeType":"VariableDeclaration","scope":522,"src":"6056:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":516,"name":"uint8","nodeType":"ElementaryTypeName","src":"6056:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6041:36:0"},"returnParameters":{"id":521,"nodeType":"ParameterList","parameters":[{"constant":false,"id":520,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":522,"src":"6101:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":519,"name":"uint256","nodeType":"ElementaryTypeName","src":"6101:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6100:9:0"},"scope":737,"src":"6017:93:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"8dbefee2","id":529,"implemented":false,"kind":"function","modifiers":[],"name":"getTotalRewardsBalance","nameLocation":"6124:22:0","nodeType":"FunctionDefinition","parameters":{"id":525,"nodeType":"ParameterList","parameters":[{"constant":false,"id":524,"mutability":"mutable","name":"staker","nameLocation":"6155:6:0","nodeType":"VariableDeclaration","scope":529,"src":"6147:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":523,"name":"address","nodeType":"ElementaryTypeName","src":"6147:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6146:16:0"},"returnParameters":{"id":528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":527,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":529,"src":"6186:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":526,"name":"uint256","nodeType":"ElementaryTypeName","src":"6186:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6185:9:0"},"scope":737,"src":"6115:80:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"3373ee4c","id":538,"implemented":false,"kind":"function","modifiers":[],"name":"getUserAssetData","nameLocation":"6209:16:0","nodeType":"FunctionDefinition","parameters":{"id":534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":531,"mutability":"mutable","name":"user","nameLocation":"6234:4:0","nodeType":"VariableDeclaration","scope":538,"src":"6226:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":530,"name":"address","nodeType":"ElementaryTypeName","src":"6226:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":533,"mutability":"mutable","name":"asset","nameLocation":"6248:5:0","nodeType":"VariableDeclaration","scope":538,"src":"6240:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":532,"name":"address","nodeType":"ElementaryTypeName","src":"6240:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6225:29:0"},"returnParameters":{"id":537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":536,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":538,"src":"6278:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":535,"name":"uint256","nodeType":"ElementaryTypeName","src":"6278:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6277:9:0"},"scope":737,"src":"6200:87:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"174ed542","id":543,"implemented":false,"kind":"function","modifiers":[],"name":"ghoDebtToken","nameLocation":"6301:12:0","nodeType":"FunctionDefinition","parameters":{"id":539,"nodeType":"ParameterList","parameters":[],"src":"6313:2:0"},"returnParameters":{"id":542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":541,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":543,"src":"6339:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":540,"name":"address","nodeType":"ElementaryTypeName","src":"6339:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6338:9:0"},"scope":737,"src":"6292:56:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"f036bc68","id":548,"implemented":false,"kind":"function","modifiers":[],"name":"inPostSlashingPeriod","nameLocation":"6362:20:0","nodeType":"FunctionDefinition","parameters":{"id":544,"nodeType":"ParameterList","parameters":[],"src":"6382:2:0"},"returnParameters":{"id":547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":546,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":548,"src":"6408:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":545,"name":"bool","nodeType":"ElementaryTypeName","src":"6408:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6407:6:0"},"scope":737,"src":"6353:61:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"39509351","id":557,"implemented":false,"kind":"function","modifiers":[],"name":"increaseAllowance","nameLocation":"6428:17:0","nodeType":"FunctionDefinition","parameters":{"id":553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":550,"mutability":"mutable","name":"spender","nameLocation":"6454:7:0","nodeType":"VariableDeclaration","scope":557,"src":"6446:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":549,"name":"address","nodeType":"ElementaryTypeName","src":"6446:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":552,"mutability":"mutable","name":"addedValue","nameLocation":"6471:10:0","nodeType":"VariableDeclaration","scope":557,"src":"6463:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":551,"name":"uint256","nodeType":"ElementaryTypeName","src":"6463:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6445:37:0"},"returnParameters":{"id":556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":555,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":557,"src":"6501:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":554,"name":"bool","nodeType":"ElementaryTypeName","src":"6501:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"6500:6:0"},"scope":737,"src":"6419:88:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"a6b63eb8","id":570,"implemented":false,"kind":"function","modifiers":[],"name":"initialize","nameLocation":"6521:10:0","nodeType":"FunctionDefinition","parameters":{"id":568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":559,"mutability":"mutable","name":"slashingAdmin","nameLocation":"6549:13:0","nodeType":"VariableDeclaration","scope":570,"src":"6541:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":558,"name":"address","nodeType":"ElementaryTypeName","src":"6541:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":561,"mutability":"mutable","name":"cooldownPauseAdmin","nameLocation":"6580:18:0","nodeType":"VariableDeclaration","scope":570,"src":"6572:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":560,"name":"address","nodeType":"ElementaryTypeName","src":"6572:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":563,"mutability":"mutable","name":"claimHelper","nameLocation":"6616:11:0","nodeType":"VariableDeclaration","scope":570,"src":"6608:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":562,"name":"address","nodeType":"ElementaryTypeName","src":"6608:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":565,"mutability":"mutable","name":"maxSlashablePercentage","nameLocation":"6645:22:0","nodeType":"VariableDeclaration","scope":570,"src":"6637:30:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":564,"name":"uint256","nodeType":"ElementaryTypeName","src":"6637:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":567,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"6685:15:0","nodeType":"VariableDeclaration","scope":570,"src":"6677:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":566,"name":"uint256","nodeType":"ElementaryTypeName","src":"6677:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6531:175:0"},"returnParameters":{"id":569,"nodeType":"ParameterList","parameters":[],"src":"6715:0:0"},"scope":737,"src":"6512:204:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"06fdde03","id":575,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"6730:4:0","nodeType":"FunctionDefinition","parameters":{"id":571,"nodeType":"ParameterList","parameters":[],"src":"6734:2:0"},"returnParameters":{"id":574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":573,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":575,"src":"6760:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":572,"name":"string","nodeType":"ElementaryTypeName","src":"6760:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6759:15:0"},"scope":737,"src":"6721:54:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"d505accf","id":592,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"6789:6:0","nodeType":"FunctionDefinition","parameters":{"id":590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":577,"mutability":"mutable","name":"owner","nameLocation":"6804:5:0","nodeType":"VariableDeclaration","scope":592,"src":"6796:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":576,"name":"address","nodeType":"ElementaryTypeName","src":"6796:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":579,"mutability":"mutable","name":"spender","nameLocation":"6819:7:0","nodeType":"VariableDeclaration","scope":592,"src":"6811:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":578,"name":"address","nodeType":"ElementaryTypeName","src":"6811:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":581,"mutability":"mutable","name":"value","nameLocation":"6836:5:0","nodeType":"VariableDeclaration","scope":592,"src":"6828:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":580,"name":"uint256","nodeType":"ElementaryTypeName","src":"6828:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":583,"mutability":"mutable","name":"deadline","nameLocation":"6851:8:0","nodeType":"VariableDeclaration","scope":592,"src":"6843:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":582,"name":"uint256","nodeType":"ElementaryTypeName","src":"6843:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":585,"mutability":"mutable","name":"v","nameLocation":"6867:1:0","nodeType":"VariableDeclaration","scope":592,"src":"6861:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":584,"name":"uint8","nodeType":"ElementaryTypeName","src":"6861:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":587,"mutability":"mutable","name":"r","nameLocation":"6878:1:0","nodeType":"VariableDeclaration","scope":592,"src":"6870:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":586,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6870:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":589,"mutability":"mutable","name":"s","nameLocation":"6889:1:0","nodeType":"VariableDeclaration","scope":592,"src":"6881:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":588,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6881:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6795:96:0"},"returnParameters":{"id":591,"nodeType":"ParameterList","parameters":[],"src":"6908:0:0"},"scope":737,"src":"6780:129:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"4cdad506","id":599,"implemented":false,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"6923:13:0","nodeType":"FunctionDefinition","parameters":{"id":595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":594,"mutability":"mutable","name":"shares","nameLocation":"6945:6:0","nodeType":"VariableDeclaration","scope":599,"src":"6937:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":593,"name":"uint256","nodeType":"ElementaryTypeName","src":"6937:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6936:16:0"},"returnParameters":{"id":598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":597,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":599,"src":"6976:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":596,"name":"uint256","nodeType":"ElementaryTypeName","src":"6976:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6975:9:0"},"scope":737,"src":"6914:71:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"727a5d57","id":606,"implemented":false,"kind":"function","modifiers":[],"name":"previewStake","nameLocation":"6999:12:0","nodeType":"FunctionDefinition","parameters":{"id":602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":601,"mutability":"mutable","name":"assets","nameLocation":"7020:6:0","nodeType":"VariableDeclaration","scope":606,"src":"7012:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":600,"name":"uint256","nodeType":"ElementaryTypeName","src":"7012:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7011:16:0"},"returnParameters":{"id":605,"nodeType":"ParameterList","parameters":[{"constant":false,"id":604,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":606,"src":"7051:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":603,"name":"uint256","nodeType":"ElementaryTypeName","src":"7051:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7050:9:0"},"scope":737,"src":"6990:70:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"1e9a6950","id":613,"implemented":false,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"7074:6:0","nodeType":"FunctionDefinition","parameters":{"id":611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":608,"mutability":"mutable","name":"to","nameLocation":"7089:2:0","nodeType":"VariableDeclaration","scope":613,"src":"7081:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":607,"name":"address","nodeType":"ElementaryTypeName","src":"7081:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":610,"mutability":"mutable","name":"amount","nameLocation":"7101:6:0","nodeType":"VariableDeclaration","scope":613,"src":"7093:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":609,"name":"uint256","nodeType":"ElementaryTypeName","src":"7093:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7080:28:0"},"returnParameters":{"id":612,"nodeType":"ParameterList","parameters":[],"src":"7117:0:0"},"scope":737,"src":"7065:53:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"112d037c","id":622,"implemented":false,"kind":"function","modifiers":[],"name":"redeemOnBehalf","nameLocation":"7132:14:0","nodeType":"FunctionDefinition","parameters":{"id":620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":615,"mutability":"mutable","name":"from","nameLocation":"7155:4:0","nodeType":"VariableDeclaration","scope":622,"src":"7147:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":614,"name":"address","nodeType":"ElementaryTypeName","src":"7147:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":617,"mutability":"mutable","name":"to","nameLocation":"7169:2:0","nodeType":"VariableDeclaration","scope":622,"src":"7161:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":616,"name":"address","nodeType":"ElementaryTypeName","src":"7161:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":619,"mutability":"mutable","name":"amount","nameLocation":"7181:6:0","nodeType":"VariableDeclaration","scope":622,"src":"7173:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":618,"name":"uint256","nodeType":"ElementaryTypeName","src":"7173:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7146:42:0"},"returnParameters":{"id":621,"nodeType":"ParameterList","parameters":[],"src":"7197:0:0"},"scope":737,"src":"7123:75:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"45755dd6","id":627,"implemented":false,"kind":"function","modifiers":[],"name":"returnFunds","nameLocation":"7212:11:0","nodeType":"FunctionDefinition","parameters":{"id":625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":624,"mutability":"mutable","name":"amount","nameLocation":"7232:6:0","nodeType":"VariableDeclaration","scope":627,"src":"7224:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":623,"name":"uint256","nodeType":"ElementaryTypeName","src":"7224:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7223:16:0"},"returnParameters":{"id":626,"nodeType":"ParameterList","parameters":[],"src":"7248:0:0"},"scope":737,"src":"7203:46:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"7b5b1157","id":632,"implemented":false,"kind":"function","modifiers":[],"name":"setCooldownSeconds","nameLocation":"7263:18:0","nodeType":"FunctionDefinition","parameters":{"id":630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":629,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"7290:15:0","nodeType":"VariableDeclaration","scope":632,"src":"7282:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":628,"name":"uint256","nodeType":"ElementaryTypeName","src":"7282:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7281:25:0"},"returnParameters":{"id":631,"nodeType":"ParameterList","parameters":[],"src":"7315:0:0"},"scope":737,"src":"7254:62:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"4998fffd","id":637,"implemented":false,"kind":"function","modifiers":[],"name":"setGHODebtToken","nameLocation":"7330:15:0","nodeType":"FunctionDefinition","parameters":{"id":635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":634,"mutability":"mutable","name":"newGHODebtToken","nameLocation":"7354:15:0","nodeType":"VariableDeclaration","scope":637,"src":"7346:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":633,"name":"address","nodeType":"ElementaryTypeName","src":"7346:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7345:25:0"},"returnParameters":{"id":636,"nodeType":"ParameterList","parameters":[],"src":"7379:0:0"},"scope":737,"src":"7321:59:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"74011f56","id":642,"implemented":false,"kind":"function","modifiers":[],"name":"setMaxSlashablePercentage","nameLocation":"7394:25:0","nodeType":"FunctionDefinition","parameters":{"id":640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":639,"mutability":"mutable","name":"percentage","nameLocation":"7428:10:0","nodeType":"VariableDeclaration","scope":642,"src":"7420:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":638,"name":"uint256","nodeType":"ElementaryTypeName","src":"7420:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7419:20:0"},"returnParameters":{"id":641,"nodeType":"ParameterList","parameters":[],"src":"7448:0:0"},"scope":737,"src":"7385:64:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"ab406fe6","id":649,"implemented":false,"kind":"function","modifiers":[],"name":"setPendingAdmin","nameLocation":"7463:15:0","nodeType":"FunctionDefinition","parameters":{"id":647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":644,"mutability":"mutable","name":"role","nameLocation":"7487:4:0","nodeType":"VariableDeclaration","scope":649,"src":"7479:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":643,"name":"uint256","nodeType":"ElementaryTypeName","src":"7479:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":646,"mutability":"mutable","name":"newPendingAdmin","nameLocation":"7501:15:0","nodeType":"VariableDeclaration","scope":649,"src":"7493:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":645,"name":"address","nodeType":"ElementaryTypeName","src":"7493:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7478:39:0"},"returnParameters":{"id":648,"nodeType":"ParameterList","parameters":[],"src":"7526:0:0"},"scope":737,"src":"7454:73:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"aff05aa9","id":652,"implemented":false,"kind":"function","modifiers":[],"name":"settleSlashing","nameLocation":"7541:14:0","nodeType":"FunctionDefinition","parameters":{"id":650,"nodeType":"ParameterList","parameters":[],"src":"7555:2:0"},"returnParameters":{"id":651,"nodeType":"ParameterList","parameters":[],"src":"7566:0:0"},"scope":737,"src":"7532:35:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"02fb4d85","id":661,"implemented":false,"kind":"function","modifiers":[],"name":"slash","nameLocation":"7581:5:0","nodeType":"FunctionDefinition","parameters":{"id":657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":654,"mutability":"mutable","name":"destination","nameLocation":"7595:11:0","nodeType":"VariableDeclaration","scope":661,"src":"7587:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":653,"name":"address","nodeType":"ElementaryTypeName","src":"7587:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":656,"mutability":"mutable","name":"amount","nameLocation":"7616:6:0","nodeType":"VariableDeclaration","scope":661,"src":"7608:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":655,"name":"uint256","nodeType":"ElementaryTypeName","src":"7608:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7586:37:0"},"returnParameters":{"id":660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":659,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":661,"src":"7642:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":658,"name":"uint256","nodeType":"ElementaryTypeName","src":"7642:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7641:9:0"},"scope":737,"src":"7572:79:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"adc9772e","id":668,"implemented":false,"kind":"function","modifiers":[],"name":"stake","nameLocation":"7665:5:0","nodeType":"FunctionDefinition","parameters":{"id":666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":663,"mutability":"mutable","name":"to","nameLocation":"7679:2:0","nodeType":"VariableDeclaration","scope":668,"src":"7671:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":662,"name":"address","nodeType":"ElementaryTypeName","src":"7671:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":665,"mutability":"mutable","name":"amount","nameLocation":"7691:6:0","nodeType":"VariableDeclaration","scope":668,"src":"7683:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":664,"name":"uint256","nodeType":"ElementaryTypeName","src":"7683:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7670:28:0"},"returnParameters":{"id":667,"nodeType":"ParameterList","parameters":[],"src":"7707:0:0"},"scope":737,"src":"7656:52:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"73d6a889","id":683,"implemented":false,"kind":"function","modifiers":[],"name":"stakeWithPermit","nameLocation":"7722:15:0","nodeType":"FunctionDefinition","parameters":{"id":681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":670,"mutability":"mutable","name":"from","nameLocation":"7746:4:0","nodeType":"VariableDeclaration","scope":683,"src":"7738:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":669,"name":"address","nodeType":"ElementaryTypeName","src":"7738:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":672,"mutability":"mutable","name":"amount","nameLocation":"7760:6:0","nodeType":"VariableDeclaration","scope":683,"src":"7752:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":671,"name":"uint256","nodeType":"ElementaryTypeName","src":"7752:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":674,"mutability":"mutable","name":"deadline","nameLocation":"7776:8:0","nodeType":"VariableDeclaration","scope":683,"src":"7768:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":673,"name":"uint256","nodeType":"ElementaryTypeName","src":"7768:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":676,"mutability":"mutable","name":"v","nameLocation":"7792:1:0","nodeType":"VariableDeclaration","scope":683,"src":"7786:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":675,"name":"uint8","nodeType":"ElementaryTypeName","src":"7786:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":678,"mutability":"mutable","name":"r","nameLocation":"7803:1:0","nodeType":"VariableDeclaration","scope":683,"src":"7795:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":677,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7795:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":680,"mutability":"mutable","name":"s","nameLocation":"7814:1:0","nodeType":"VariableDeclaration","scope":683,"src":"7806:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":679,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7806:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7737:79:0"},"returnParameters":{"id":682,"nodeType":"ParameterList","parameters":[],"src":"7825:0:0"},"scope":737,"src":"7713:113:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"7e90d7ef","id":690,"implemented":false,"kind":"function","modifiers":[],"name":"stakerRewardsToClaim","nameLocation":"7840:20:0","nodeType":"FunctionDefinition","parameters":{"id":686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":685,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":690,"src":"7861:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":684,"name":"address","nodeType":"ElementaryTypeName","src":"7861:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7860:9:0"},"returnParameters":{"id":689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":688,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":690,"src":"7893:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":687,"name":"uint256","nodeType":"ElementaryTypeName","src":"7893:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7892:9:0"},"scope":737,"src":"7831:71:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"091030c3","id":699,"implemented":false,"kind":"function","modifiers":[],"name":"stakersCooldowns","nameLocation":"7916:16:0","nodeType":"FunctionDefinition","parameters":{"id":693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":692,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":699,"src":"7933:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":691,"name":"address","nodeType":"ElementaryTypeName","src":"7933:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7932:9:0"},"returnParameters":{"id":698,"nodeType":"ParameterList","parameters":[{"constant":false,"id":695,"mutability":"mutable","name":"timestamp","nameLocation":"7972:9:0","nodeType":"VariableDeclaration","scope":699,"src":"7965:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":694,"name":"uint40","nodeType":"ElementaryTypeName","src":"7965:6:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":697,"mutability":"mutable","name":"amount","nameLocation":"7991:6:0","nodeType":"VariableDeclaration","scope":699,"src":"7983:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":696,"name":"uint216","nodeType":"ElementaryTypeName","src":"7983:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"7964:34:0"},"scope":737,"src":"7907:92:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"95d89b41","id":704,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"8013:6:0","nodeType":"FunctionDefinition","parameters":{"id":700,"nodeType":"ParameterList","parameters":[],"src":"8019:2:0"},"returnParameters":{"id":703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":702,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":704,"src":"8045:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":701,"name":"string","nodeType":"ElementaryTypeName","src":"8045:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8044:15:0"},"scope":737,"src":"8004:56:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"18160ddd","id":709,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"8074:11:0","nodeType":"FunctionDefinition","parameters":{"id":705,"nodeType":"ParameterList","parameters":[],"src":"8085:2:0"},"returnParameters":{"id":708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":707,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":709,"src":"8111:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":706,"name":"uint256","nodeType":"ElementaryTypeName","src":"8111:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8110:9:0"},"scope":737,"src":"8065:55:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"981b24d0","id":716,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupplyAt","nameLocation":"8134:13:0","nodeType":"FunctionDefinition","parameters":{"id":712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":711,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":716,"src":"8148:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":710,"name":"uint256","nodeType":"ElementaryTypeName","src":"8148:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8147:9:0"},"returnParameters":{"id":715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":714,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":716,"src":"8180:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":713,"name":"uint256","nodeType":"ElementaryTypeName","src":"8180:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8179:9:0"},"scope":737,"src":"8125:64:0","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"a9059cbb","id":725,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"8203:8:0","nodeType":"FunctionDefinition","parameters":{"id":721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":718,"mutability":"mutable","name":"to","nameLocation":"8220:2:0","nodeType":"VariableDeclaration","scope":725,"src":"8212:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":717,"name":"address","nodeType":"ElementaryTypeName","src":"8212:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":720,"mutability":"mutable","name":"amount","nameLocation":"8232:6:0","nodeType":"VariableDeclaration","scope":725,"src":"8224:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":719,"name":"uint256","nodeType":"ElementaryTypeName","src":"8224:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8211:28:0"},"returnParameters":{"id":724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":723,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":725,"src":"8258:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":722,"name":"bool","nodeType":"ElementaryTypeName","src":"8258:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8257:6:0"},"scope":737,"src":"8194:70:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"23b872dd","id":736,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"8278:12:0","nodeType":"FunctionDefinition","parameters":{"id":732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":727,"mutability":"mutable","name":"from","nameLocation":"8299:4:0","nodeType":"VariableDeclaration","scope":736,"src":"8291:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":726,"name":"address","nodeType":"ElementaryTypeName","src":"8291:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":729,"mutability":"mutable","name":"to","nameLocation":"8313:2:0","nodeType":"VariableDeclaration","scope":736,"src":"8305:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":728,"name":"address","nodeType":"ElementaryTypeName","src":"8305:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":731,"mutability":"mutable","name":"amount","nameLocation":"8325:6:0","nodeType":"VariableDeclaration","scope":736,"src":"8317:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":730,"name":"uint256","nodeType":"ElementaryTypeName","src":"8317:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8290:42:0"},"returnParameters":{"id":735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":734,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":736,"src":"8351:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":733,"name":"bool","nodeType":"ElementaryTypeName","src":"8351:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8350:6:0"},"scope":737,"src":"8269:88:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":738,"src":"26:8333:0","usedErrors":[],"usedEvents":[9,15,21,27,31,39,47,51,55,59,63,69,79,85,93,99,105,109,111,121,129,137]}],"src":"0:8360:0"},"id":0},"contracts/interfaces/AggregatorInterface.sol":{"ast":{"absolutePath":"contracts/interfaces/AggregatorInterface.sol","exportedSymbols":{"AggregatorInterface":[785]},"id":786,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":739,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"32:23:1"},{"abstract":false,"baseContracts":[],"canonicalName":"AggregatorInterface","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":785,"linearizedBaseContracts":[785],"name":"AggregatorInterface","nameLocation":"67:19:1","nodeType":"ContractDefinition","nodes":[{"functionSelector":"50d25bcd","id":744,"implemented":false,"kind":"function","modifiers":[],"name":"latestAnswer","nameLocation":"100:12:1","nodeType":"FunctionDefinition","parameters":{"id":740,"nodeType":"ParameterList","parameters":[],"src":"112:2:1"},"returnParameters":{"id":743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":742,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":744,"src":"138:6:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":741,"name":"int256","nodeType":"ElementaryTypeName","src":"138:6:1","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"137:8:1"},"scope":785,"src":"91:55:1","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"8205bf6a","id":749,"implemented":false,"kind":"function","modifiers":[],"name":"latestTimestamp","nameLocation":"159:15:1","nodeType":"FunctionDefinition","parameters":{"id":745,"nodeType":"ParameterList","parameters":[],"src":"174:2:1"},"returnParameters":{"id":748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":747,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":749,"src":"200:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":746,"name":"uint256","nodeType":"ElementaryTypeName","src":"200:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"199:9:1"},"scope":785,"src":"150:59:1","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"668a0f02","id":754,"implemented":false,"kind":"function","modifiers":[],"name":"latestRound","nameLocation":"222:11:1","nodeType":"FunctionDefinition","parameters":{"id":750,"nodeType":"ParameterList","parameters":[],"src":"233:2:1"},"returnParameters":{"id":753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":754,"src":"259:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":751,"name":"uint256","nodeType":"ElementaryTypeName","src":"259:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"258:9:1"},"scope":785,"src":"213:55:1","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"b5ab58dc","id":761,"implemented":false,"kind":"function","modifiers":[],"name":"getAnswer","nameLocation":"281:9:1","nodeType":"FunctionDefinition","parameters":{"id":757,"nodeType":"ParameterList","parameters":[{"constant":false,"id":756,"mutability":"mutable","name":"roundId","nameLocation":"299:7:1","nodeType":"VariableDeclaration","scope":761,"src":"291:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":755,"name":"uint256","nodeType":"ElementaryTypeName","src":"291:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"290:17:1"},"returnParameters":{"id":760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":759,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":761,"src":"331:6:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":758,"name":"int256","nodeType":"ElementaryTypeName","src":"331:6:1","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"330:8:1"},"scope":785,"src":"272:67:1","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"b633620c","id":768,"implemented":false,"kind":"function","modifiers":[],"name":"getTimestamp","nameLocation":"352:12:1","nodeType":"FunctionDefinition","parameters":{"id":764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":763,"mutability":"mutable","name":"roundId","nameLocation":"373:7:1","nodeType":"VariableDeclaration","scope":768,"src":"365:15:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":762,"name":"uint256","nodeType":"ElementaryTypeName","src":"365:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"364:17:1"},"returnParameters":{"id":767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":768,"src":"405:7:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":765,"name":"uint256","nodeType":"ElementaryTypeName","src":"405:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:9:1"},"scope":785,"src":"343:71:1","stateMutability":"view","virtual":false,"visibility":"external"},{"anonymous":false,"eventSelector":"0559884fd3a460db3073b7fc896cc77986f16e378210ded43186175bf646fc5f","id":776,"name":"AnswerUpdated","nameLocation":"424:13:1","nodeType":"EventDefinition","parameters":{"id":775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":770,"indexed":true,"mutability":"mutable","name":"current","nameLocation":"453:7:1","nodeType":"VariableDeclaration","scope":776,"src":"438:22:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":769,"name":"int256","nodeType":"ElementaryTypeName","src":"438:6:1","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":772,"indexed":true,"mutability":"mutable","name":"roundId","nameLocation":"478:7:1","nodeType":"VariableDeclaration","scope":776,"src":"462:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":771,"name":"uint256","nodeType":"ElementaryTypeName","src":"462:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":774,"indexed":false,"mutability":"mutable","name":"updatedAt","nameLocation":"495:9:1","nodeType":"VariableDeclaration","scope":776,"src":"487:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":773,"name":"uint256","nodeType":"ElementaryTypeName","src":"487:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"437:68:1"},"src":"418:88:1"},{"anonymous":false,"eventSelector":"0109fc6f55cf40689f02fbaad7af7fe7bbac8a3d2186600afc7d3e10cac60271","id":784,"name":"NewRound","nameLocation":"516:8:1","nodeType":"EventDefinition","parameters":{"id":783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":778,"indexed":true,"mutability":"mutable","name":"roundId","nameLocation":"541:7:1","nodeType":"VariableDeclaration","scope":784,"src":"525:23:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":777,"name":"uint256","nodeType":"ElementaryTypeName","src":"525:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":780,"indexed":true,"mutability":"mutable","name":"startedBy","nameLocation":"566:9:1","nodeType":"VariableDeclaration","scope":784,"src":"550:25:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":779,"name":"address","nodeType":"ElementaryTypeName","src":"550:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":782,"indexed":false,"mutability":"mutable","name":"startedAt","nameLocation":"585:9:1","nodeType":"VariableDeclaration","scope":784,"src":"577:17:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":781,"name":"uint256","nodeType":"ElementaryTypeName","src":"577:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"524:71:1"},"src":"510:86:1"}],"scope":786,"src":"57:541:1","usedErrors":[],"usedEvents":[776,784]}],"src":"32:566:1"},"id":1},"contracts/interfaces/IERC20.sol":{"ast":{"absolutePath":"contracts/interfaces/IERC20.sol","exportedSymbols":{"IERC20":[863]},"id":864,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":787,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"106:23:2"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":788,"nodeType":"StructuredDocumentation","src":"131:70:2","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":863,"linearizedBaseContracts":[863],"name":"IERC20","nameLocation":"212:6:2","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":789,"nodeType":"StructuredDocumentation","src":"223:148:2","text":" @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":797,"name":"Transfer","nameLocation":"380:8:2","nodeType":"EventDefinition","parameters":{"id":796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":791,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"405:4:2","nodeType":"VariableDeclaration","scope":797,"src":"389:20:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":790,"name":"address","nodeType":"ElementaryTypeName","src":"389:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":793,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"427:2:2","nodeType":"VariableDeclaration","scope":797,"src":"411:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":792,"name":"address","nodeType":"ElementaryTypeName","src":"411:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":795,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"439:5:2","nodeType":"VariableDeclaration","scope":797,"src":"431:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":794,"name":"uint256","nodeType":"ElementaryTypeName","src":"431:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"388:57:2"},"src":"374:72:2"},{"anonymous":false,"documentation":{"id":798,"nodeType":"StructuredDocumentation","src":"450:142:2","text":" @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":806,"name":"Approval","nameLocation":"601:8:2","nodeType":"EventDefinition","parameters":{"id":805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":800,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"626:5:2","nodeType":"VariableDeclaration","scope":806,"src":"610:21:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":799,"name":"address","nodeType":"ElementaryTypeName","src":"610:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":802,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"649:7:2","nodeType":"VariableDeclaration","scope":806,"src":"633:23:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":801,"name":"address","nodeType":"ElementaryTypeName","src":"633:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":804,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"666:5:2","nodeType":"VariableDeclaration","scope":806,"src":"658:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":803,"name":"uint256","nodeType":"ElementaryTypeName","src":"658:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"609:63:2"},"src":"595:78:2"},{"documentation":{"id":807,"nodeType":"StructuredDocumentation","src":"677:62:2","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":812,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"751:11:2","nodeType":"FunctionDefinition","parameters":{"id":808,"nodeType":"ParameterList","parameters":[],"src":"762:2:2"},"returnParameters":{"id":811,"nodeType":"ParameterList","parameters":[{"constant":false,"id":810,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":812,"src":"788:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":809,"name":"uint256","nodeType":"ElementaryTypeName","src":"788:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"787:9:2"},"scope":863,"src":"742:55:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":813,"nodeType":"StructuredDocumentation","src":"801:68:2","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":820,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"881:9:2","nodeType":"FunctionDefinition","parameters":{"id":816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":815,"mutability":"mutable","name":"account","nameLocation":"899:7:2","nodeType":"VariableDeclaration","scope":820,"src":"891:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":814,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:17:2"},"returnParameters":{"id":819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":818,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":820,"src":"931:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":817,"name":"uint256","nodeType":"ElementaryTypeName","src":"931:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"930:9:2"},"scope":863,"src":"872:68:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":821,"nodeType":"StructuredDocumentation","src":"944:190:2","text":" @dev Moves `amount` tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"a9059cbb","id":830,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1146:8:2","nodeType":"FunctionDefinition","parameters":{"id":826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":823,"mutability":"mutable","name":"to","nameLocation":"1163:2:2","nodeType":"VariableDeclaration","scope":830,"src":"1155:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":822,"name":"address","nodeType":"ElementaryTypeName","src":"1155:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":825,"mutability":"mutable","name":"amount","nameLocation":"1175:6:2","nodeType":"VariableDeclaration","scope":830,"src":"1167:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":824,"name":"uint256","nodeType":"ElementaryTypeName","src":"1167:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1154:28:2"},"returnParameters":{"id":829,"nodeType":"ParameterList","parameters":[{"constant":false,"id":828,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":830,"src":"1201:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":827,"name":"bool","nodeType":"ElementaryTypeName","src":"1201:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1200:6:2"},"scope":863,"src":"1137:70:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":831,"nodeType":"StructuredDocumentation","src":"1211:252:2","text":" @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."},"functionSelector":"dd62ed3e","id":840,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1475:9:2","nodeType":"FunctionDefinition","parameters":{"id":836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":833,"mutability":"mutable","name":"owner","nameLocation":"1493:5:2","nodeType":"VariableDeclaration","scope":840,"src":"1485:13:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":832,"name":"address","nodeType":"ElementaryTypeName","src":"1485:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":835,"mutability":"mutable","name":"spender","nameLocation":"1508:7:2","nodeType":"VariableDeclaration","scope":840,"src":"1500:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":834,"name":"address","nodeType":"ElementaryTypeName","src":"1500:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1484:32:2"},"returnParameters":{"id":839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":838,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":840,"src":"1552:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":837,"name":"uint256","nodeType":"ElementaryTypeName","src":"1552:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1551:9:2"},"scope":863,"src":"1466:95:2","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":841,"nodeType":"StructuredDocumentation","src":"1565:616:2","text":" @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."},"functionSelector":"095ea7b3","id":850,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2193:7:2","nodeType":"FunctionDefinition","parameters":{"id":846,"nodeType":"ParameterList","parameters":[{"constant":false,"id":843,"mutability":"mutable","name":"spender","nameLocation":"2209:7:2","nodeType":"VariableDeclaration","scope":850,"src":"2201:15:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":842,"name":"address","nodeType":"ElementaryTypeName","src":"2201:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":845,"mutability":"mutable","name":"amount","nameLocation":"2226:6:2","nodeType":"VariableDeclaration","scope":850,"src":"2218:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":844,"name":"uint256","nodeType":"ElementaryTypeName","src":"2218:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2200:33:2"},"returnParameters":{"id":849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":848,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":850,"src":"2252:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":847,"name":"bool","nodeType":"ElementaryTypeName","src":"2252:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2251:6:2"},"scope":863,"src":"2184:74:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":851,"nodeType":"StructuredDocumentation","src":"2262:271:2","text":" @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":862,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2545:12:2","nodeType":"FunctionDefinition","parameters":{"id":858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":853,"mutability":"mutable","name":"from","nameLocation":"2571:4:2","nodeType":"VariableDeclaration","scope":862,"src":"2563:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":852,"name":"address","nodeType":"ElementaryTypeName","src":"2563:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":855,"mutability":"mutable","name":"to","nameLocation":"2589:2:2","nodeType":"VariableDeclaration","scope":862,"src":"2581:10:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":854,"name":"address","nodeType":"ElementaryTypeName","src":"2581:7:2","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":857,"mutability":"mutable","name":"amount","nameLocation":"2605:6:2","nodeType":"VariableDeclaration","scope":862,"src":"2597:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":856,"name":"uint256","nodeType":"ElementaryTypeName","src":"2597:7:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2557:58:2"},"returnParameters":{"id":861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":860,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":862,"src":"2634:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":859,"name":"bool","nodeType":"ElementaryTypeName","src":"2634:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2633:6:2"},"scope":863,"src":"2536:104:2","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":864,"src":"202:2440:2","usedErrors":[],"usedEvents":[797,806]}],"src":"106:2537:2"},"id":2},"contracts/interfaces/IStakedTokenDataProvider.sol":{"ast":{"absolutePath":"contracts/interfaces/IStakedTokenDataProvider.sol","exportedSymbols":{"IStakedTokenDataProvider":[958]},"id":959,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":865,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"32:23:3"},{"abstract":false,"baseContracts":[],"canonicalName":"IStakedTokenDataProvider","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":958,"linearizedBaseContracts":[958],"name":"IStakedTokenDataProvider","nameLocation":"67:24:3","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IStakedTokenDataProvider.StakedTokenData","id":888,"members":[{"constant":false,"id":867,"mutability":"mutable","name":"stakedTokenTotalSupply","nameLocation":"139:22:3","nodeType":"VariableDeclaration","scope":888,"src":"131:30:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":866,"name":"uint256","nodeType":"ElementaryTypeName","src":"131:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":869,"mutability":"mutable","name":"stakedTokenTotalRedeemableAmount","nameLocation":"179:32:3","nodeType":"VariableDeclaration","scope":888,"src":"171:40:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":868,"name":"uint256","nodeType":"ElementaryTypeName","src":"171:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":871,"mutability":"mutable","name":"stakeCooldownSeconds","nameLocation":"229:20:3","nodeType":"VariableDeclaration","scope":888,"src":"221:28:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":870,"name":"uint256","nodeType":"ElementaryTypeName","src":"221:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":873,"mutability":"mutable","name":"stakeUnstakeWindow","nameLocation":"267:18:3","nodeType":"VariableDeclaration","scope":888,"src":"259:26:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":872,"name":"uint256","nodeType":"ElementaryTypeName","src":"259:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":875,"mutability":"mutable","name":"stakedTokenPriceEth","nameLocation":"303:19:3","nodeType":"VariableDeclaration","scope":888,"src":"295:27:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":874,"name":"uint256","nodeType":"ElementaryTypeName","src":"295:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":877,"mutability":"mutable","name":"rewardTokenPriceEth","nameLocation":"340:19:3","nodeType":"VariableDeclaration","scope":888,"src":"332:27:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":876,"name":"uint256","nodeType":"ElementaryTypeName","src":"332:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":879,"mutability":"mutable","name":"distributionPerSecond","nameLocation":"377:21:3","nodeType":"VariableDeclaration","scope":888,"src":"369:29:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":878,"name":"uint256","nodeType":"ElementaryTypeName","src":"369:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":881,"mutability":"mutable","name":"distributionEnd","nameLocation":"416:15:3","nodeType":"VariableDeclaration","scope":888,"src":"408:23:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":880,"name":"uint256","nodeType":"ElementaryTypeName","src":"408:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":883,"mutability":"mutable","name":"stakeApy","nameLocation":"449:8:3","nodeType":"VariableDeclaration","scope":888,"src":"441:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":882,"name":"uint256","nodeType":"ElementaryTypeName","src":"441:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":885,"mutability":"mutable","name":"currentExchangeRate","nameLocation":"475:19:3","nodeType":"VariableDeclaration","scope":888,"src":"467:27:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":884,"name":"uint256","nodeType":"ElementaryTypeName","src":"467:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":887,"mutability":"mutable","name":"maxSlashablePercentage","nameLocation":"512:22:3","nodeType":"VariableDeclaration","scope":888,"src":"504:30:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":886,"name":"uint256","nodeType":"ElementaryTypeName","src":"504:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"StakedTokenData","nameLocation":"105:15:3","nodeType":"StructDefinition","scope":958,"src":"98:443:3","visibility":"public"},{"canonicalName":"IStakedTokenDataProvider.StakedTokenUserData","id":901,"members":[{"constant":false,"id":890,"mutability":"mutable","name":"stakedTokenUserBalance","nameLocation":"592:22:3","nodeType":"VariableDeclaration","scope":901,"src":"584:30:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":889,"name":"uint256","nodeType":"ElementaryTypeName","src":"584:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":892,"mutability":"mutable","name":"underlyingTokenUserBalance","nameLocation":"632:26:3","nodeType":"VariableDeclaration","scope":901,"src":"624:34:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":891,"name":"uint256","nodeType":"ElementaryTypeName","src":"624:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":894,"mutability":"mutable","name":"stakedTokenRedeemableAmount","nameLocation":"676:27:3","nodeType":"VariableDeclaration","scope":901,"src":"668:35:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":893,"name":"uint256","nodeType":"ElementaryTypeName","src":"668:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":896,"mutability":"mutable","name":"rewardsToClaim","nameLocation":"721:14:3","nodeType":"VariableDeclaration","scope":901,"src":"713:22:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":895,"name":"uint256","nodeType":"ElementaryTypeName","src":"713:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":898,"mutability":"mutable","name":"cooldownTimestamp","nameLocation":"752:17:3","nodeType":"VariableDeclaration","scope":901,"src":"745:24:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":897,"name":"uint40","nodeType":"ElementaryTypeName","src":"745:6:3","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":900,"mutability":"mutable","name":"cooldownAmount","nameLocation":"787:14:3","nodeType":"VariableDeclaration","scope":901,"src":"779:22:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":899,"name":"uint216","nodeType":"ElementaryTypeName","src":"779:7:3","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"name":"StakedTokenUserData","nameLocation":"554:19:3","nodeType":"StructDefinition","scope":958,"src":"547:261:3","visibility":"public"},{"functionSelector":"b0f0abe9","id":906,"implemented":false,"kind":"function","modifiers":[],"name":"ETH_USD_PRICE_FEED","nameLocation":"823:18:3","nodeType":"FunctionDefinition","parameters":{"id":902,"nodeType":"ParameterList","parameters":[],"src":"841:2:3"},"returnParameters":{"id":905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":906,"src":"867:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":903,"name":"address","nodeType":"ElementaryTypeName","src":"867:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"866:9:3"},"scope":958,"src":"814:62:3","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"a54ae44c","id":911,"implemented":false,"kind":"function","modifiers":[],"name":"PSYS_USD_PRICE_FEED","nameLocation":"890:19:3","nodeType":"FunctionDefinition","parameters":{"id":907,"nodeType":"ParameterList","parameters":[],"src":"909:2:3"},"returnParameters":{"id":910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":909,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":911,"src":"935:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":908,"name":"address","nodeType":"ElementaryTypeName","src":"935:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"934:9:3"},"scope":958,"src":"881:63:3","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"e0fdf79f","id":916,"implemented":false,"kind":"function","modifiers":[],"name":"STAKED_PSYS","nameLocation":"958:11:3","nodeType":"FunctionDefinition","parameters":{"id":912,"nodeType":"ParameterList","parameters":[],"src":"969:2:3"},"returnParameters":{"id":915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":914,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":916,"src":"995:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":913,"name":"address","nodeType":"ElementaryTypeName","src":"995:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"994:9:3"},"scope":958,"src":"949:55:3","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"b7d1a98d","id":927,"implemented":false,"kind":"function","modifiers":[],"name":"getAllStakedTokenData","nameLocation":"1019:21:3","nodeType":"FunctionDefinition","parameters":{"id":917,"nodeType":"ParameterList","parameters":[],"src":"1040:2:3"},"returnParameters":{"id":926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":920,"mutability":"mutable","name":"stkPSYSData","nameLocation":"1098:11:3","nodeType":"VariableDeclaration","scope":927,"src":"1075:34:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":919,"nodeType":"UserDefinedTypeName","pathNode":{"id":918,"name":"StakedTokenData","nameLocations":["1075:15:3"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1075:15:3"},"referencedDeclaration":888,"src":"1075:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":923,"mutability":"mutable","name":"stkBptData","nameLocation":"1142:10:3","nodeType":"VariableDeclaration","scope":927,"src":"1119:33:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":922,"nodeType":"UserDefinedTypeName","pathNode":{"id":921,"name":"StakedTokenData","nameLocations":["1119:15:3"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1119:15:3"},"referencedDeclaration":888,"src":"1119:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":925,"mutability":"mutable","name":"ethPrice","nameLocation":"1170:8:3","nodeType":"VariableDeclaration","scope":927,"src":"1162:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":924,"name":"uint256","nodeType":"ElementaryTypeName","src":"1162:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1065:119:3"},"scope":958,"src":"1010:175:3","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"cca44f0a","id":946,"implemented":false,"kind":"function","modifiers":[],"name":"getAllStakedTokenUserData","nameLocation":"1200:25:3","nodeType":"FunctionDefinition","parameters":{"id":930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":929,"mutability":"mutable","name":"user","nameLocation":"1234:4:3","nodeType":"VariableDeclaration","scope":946,"src":"1226:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":928,"name":"address","nodeType":"ElementaryTypeName","src":"1226:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1225:14:3"},"returnParameters":{"id":945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":933,"mutability":"mutable","name":"stkPSYSData","nameLocation":"1295:11:3","nodeType":"VariableDeclaration","scope":946,"src":"1272:34:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":932,"nodeType":"UserDefinedTypeName","pathNode":{"id":931,"name":"StakedTokenData","nameLocations":["1272:15:3"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1272:15:3"},"referencedDeclaration":888,"src":"1272:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":936,"mutability":"mutable","name":"stkPSYSUserData","nameLocation":"1343:15:3","nodeType":"VariableDeclaration","scope":946,"src":"1316:42:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"},"typeName":{"id":935,"nodeType":"UserDefinedTypeName","pathNode":{"id":934,"name":"StakedTokenUserData","nameLocations":["1316:19:3"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"1316:19:3"},"referencedDeclaration":901,"src":"1316:19:3","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"visibility":"internal"},{"constant":false,"id":939,"mutability":"mutable","name":"stkBptData","nameLocation":"1391:10:3","nodeType":"VariableDeclaration","scope":946,"src":"1368:33:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":938,"nodeType":"UserDefinedTypeName","pathNode":{"id":937,"name":"StakedTokenData","nameLocations":["1368:15:3"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1368:15:3"},"referencedDeclaration":888,"src":"1368:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":942,"mutability":"mutable","name":"stkBptUserData","nameLocation":"1438:14:3","nodeType":"VariableDeclaration","scope":946,"src":"1411:41:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"},"typeName":{"id":941,"nodeType":"UserDefinedTypeName","pathNode":{"id":940,"name":"StakedTokenUserData","nameLocations":["1411:19:3"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"1411:19:3"},"referencedDeclaration":901,"src":"1411:19:3","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"visibility":"internal"},{"constant":false,"id":944,"mutability":"mutable","name":"ethPrice","nameLocation":"1470:8:3","nodeType":"VariableDeclaration","scope":946,"src":"1462:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":943,"name":"uint256","nodeType":"ElementaryTypeName","src":"1462:7:3","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1262:222:3"},"scope":958,"src":"1191:294:3","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"e33db4e2","id":957,"implemented":false,"kind":"function","modifiers":[],"name":"getstkPSYSUserData","nameLocation":"1500:18:3","nodeType":"FunctionDefinition","parameters":{"id":949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":948,"mutability":"mutable","name":"user","nameLocation":"1527:4:3","nodeType":"VariableDeclaration","scope":957,"src":"1519:12:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":947,"name":"address","nodeType":"ElementaryTypeName","src":"1519:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1518:14:3"},"returnParameters":{"id":956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":952,"mutability":"mutable","name":"stkPSYSData","nameLocation":"1588:11:3","nodeType":"VariableDeclaration","scope":957,"src":"1565:34:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":951,"nodeType":"UserDefinedTypeName","pathNode":{"id":950,"name":"StakedTokenData","nameLocations":["1565:15:3"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1565:15:3"},"referencedDeclaration":888,"src":"1565:15:3","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":955,"mutability":"mutable","name":"stkPSYSUserData","nameLocation":"1636:15:3","nodeType":"VariableDeclaration","scope":957,"src":"1609:42:3","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"},"typeName":{"id":954,"nodeType":"UserDefinedTypeName","pathNode":{"id":953,"name":"StakedTokenUserData","nameLocations":["1609:19:3"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"1609:19:3"},"referencedDeclaration":901,"src":"1609:19:3","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"visibility":"internal"}],"src":"1555:102:3"},"scope":958,"src":"1491:167:3","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":959,"src":"57:1603:3","usedErrors":[],"usedEvents":[]}],"src":"32:1628:3"},"id":3},"contracts/misc/StakedTokenDataProvider.sol":{"ast":{"absolutePath":"contracts/misc/StakedTokenDataProvider.sol","exportedSymbols":{"AggregatedStakedPSYSV3":[737],"AggregatorInterface":[785],"IERC20":[863],"IStakedTokenDataProvider":[958],"StakedTokenDataProvider":[1575]},"id":1576,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":960,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"32:23:4"},{"absolutePath":"contracts/interfaces/IERC20.sol","file":"../interfaces/IERC20.sol","id":962,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1576,"sourceUnit":864,"src":"57:48:4","symbolAliases":[{"foreign":{"id":961,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":863,"src":"65:6:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/AggregatedStakedPSYSV3.sol","file":"../interfaces/AggregatedStakedPSYSV3.sol","id":964,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1576,"sourceUnit":738,"src":"106:80:4","symbolAliases":[{"foreign":{"id":963,"name":"AggregatedStakedPSYSV3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"114:22:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/AggregatorInterface.sol","file":"../interfaces/AggregatorInterface.sol","id":966,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1576,"sourceUnit":786,"src":"187:74:4","symbolAliases":[{"foreign":{"id":965,"name":"AggregatorInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"195:19:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/interfaces/IStakedTokenDataProvider.sol","file":"../interfaces/IStakedTokenDataProvider.sol","id":968,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1576,"sourceUnit":959,"src":"262:84:4","symbolAliases":[{"foreign":{"id":967,"name":"IStakedTokenDataProvider","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":958,"src":"270:24:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":970,"name":"IStakedTokenDataProvider","nameLocations":["545:24:4"],"nodeType":"IdentifierPath","referencedDeclaration":958,"src":"545:24:4"},"id":971,"nodeType":"InheritanceSpecifier","src":"545:24:4"}],"canonicalName":"StakedTokenDataProvider","contractDependencies":[],"contractKind":"contract","documentation":{"id":969,"nodeType":"StructuredDocumentation","src":"348:160:4","text":" @title StakedTokenDataProvider\n @notice Data provider contract for Staked PSYS tokens of the Safety Module\n @author BGD Labs, modified by Pegasys"},"fullyImplemented":true,"id":1575,"linearizedBaseContracts":[1575,958],"name":"StakedTokenDataProvider","nameLocation":"518:23:4","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[906],"constant":false,"functionSelector":"b0f0abe9","id":974,"mutability":"immutable","name":"ETH_USD_PRICE_FEED","nameLocation":"610:18:4","nodeType":"VariableDeclaration","overrides":{"id":973,"nodeType":"OverrideSpecifier","overrides":[],"src":"601:8:4"},"scope":1575,"src":"576:52:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":972,"name":"address","nodeType":"ElementaryTypeName","src":"576:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"baseFunctions":[911],"constant":false,"functionSelector":"a54ae44c","id":977,"mutability":"immutable","name":"PSYS_USD_PRICE_FEED","nameLocation":"668:19:4","nodeType":"VariableDeclaration","overrides":{"id":976,"nodeType":"OverrideSpecifier","overrides":[],"src":"659:8:4"},"scope":1575,"src":"634:53:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":975,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"baseFunctions":[916],"constant":false,"functionSelector":"e0fdf79f","id":980,"mutability":"immutable","name":"STAKED_PSYS","nameLocation":"727:11:4","nodeType":"VariableDeclaration","overrides":{"id":979,"nodeType":"OverrideSpecifier","overrides":[],"src":"718:8:4"},"scope":1575,"src":"693:45:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":978,"name":"address","nodeType":"ElementaryTypeName","src":"693:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"constant":true,"id":983,"mutability":"constant","name":"SECONDS_PER_YEAR","nameLocation":"770:16:4","nodeType":"VariableDeclaration","scope":1575,"src":"745:52:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":981,"name":"uint256","nodeType":"ElementaryTypeName","src":"745:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"333635","id":982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"789:8:4","subdenomination":"days","typeDescriptions":{"typeIdentifier":"t_rational_31536000_by_1","typeString":"int_const 31536000"},"value":"365"},"visibility":"private"},{"constant":true,"id":986,"mutability":"constant","name":"APY_PRECISION","nameLocation":"828:13:4","nodeType":"VariableDeclaration","scope":1575,"src":"803:46:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":984,"name":"uint256","nodeType":"ElementaryTypeName","src":"803:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3130303030","id":985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"844:5:4","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"visibility":"private"},{"body":{"id":1007,"nodeType":"Block","src":"966:132:4","statements":[{"expression":{"id":997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":995,"name":"STAKED_PSYS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"976:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":996,"name":"stkPsys","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":988,"src":"990:7:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"976:21:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":998,"nodeType":"ExpressionStatement","src":"976:21:4"},{"expression":{"id":1001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":999,"name":"ETH_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"1007:18:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1000,"name":"ethUsdPriceFeed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":990,"src":"1028:15:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1007:36:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1002,"nodeType":"ExpressionStatement","src":"1007:36:4"},{"expression":{"id":1005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1003,"name":"PSYS_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":977,"src":"1053:19:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1004,"name":"psysUsdPriceFeed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":992,"src":"1075:16:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1053:38:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1006,"nodeType":"ExpressionStatement","src":"1053:38:4"}]},"id":1008,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":988,"mutability":"mutable","name":"stkPsys","nameLocation":"885:7:4","nodeType":"VariableDeclaration","scope":1008,"src":"877:15:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":987,"name":"address","nodeType":"ElementaryTypeName","src":"877:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":990,"mutability":"mutable","name":"ethUsdPriceFeed","nameLocation":"910:15:4","nodeType":"VariableDeclaration","scope":1008,"src":"902:23:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":989,"name":"address","nodeType":"ElementaryTypeName","src":"902:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":992,"mutability":"mutable","name":"psysUsdPriceFeed","nameLocation":"943:16:4","nodeType":"VariableDeclaration","scope":1008,"src":"935:24:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":991,"name":"address","nodeType":"ElementaryTypeName","src":"935:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"867:98:4"},"returnParameters":{"id":994,"nodeType":"ParameterList","parameters":[],"src":"966:0:4"},"scope":1575,"src":"856:242:4","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[927],"body":{"id":1039,"nodeType":"Block","src":"1425:167:4","statements":[{"expression":{"id":1026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1021,"name":"stkPSYSData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1014,"src":"1435:11:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1023,"name":"STAKED_PSYS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"1469:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1024,"name":"ETH_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"1482:18:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1022,"name":"_getStakedTokenData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"1449:19:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenData_$888_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenData memory)"}},"id":1025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1449:52:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"src":"1435:66:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1027,"nodeType":"ExpressionStatement","src":"1435:66:4"},{"expression":{"id":1037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1028,"name":"ethPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1019,"src":"1511:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":1032,"name":"ETH_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"1550:18:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1031,"name":"AggregatorInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"1530:19:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AggregatorInterface_$785_$","typeString":"type(contract AggregatorInterface)"}},"id":1033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1530:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AggregatorInterface_$785","typeString":"contract AggregatorInterface"}},"id":1034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1570:12:4","memberName":"latestAnswer","nodeType":"MemberAccess","referencedDeclaration":744,"src":"1530:52:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_int256_$","typeString":"function () view external returns (int256)"}},"id":1035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1530:54:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":1030,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1522:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1029,"name":"uint256","nodeType":"ElementaryTypeName","src":"1522:7:4","typeDescriptions":{}}},"id":1036,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1522:63:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1511:74:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1038,"nodeType":"ExpressionStatement","src":"1511:74:4"}]},"documentation":{"id":1009,"nodeType":"StructuredDocumentation","src":"1104:40:4","text":"@inheritdoc IStakedTokenDataProvider"},"functionSelector":"b7d1a98d","id":1040,"implemented":true,"kind":"function","modifiers":[],"name":"getAllStakedTokenData","nameLocation":"1158:21:4","nodeType":"FunctionDefinition","overrides":{"id":1011,"nodeType":"OverrideSpecifier","overrides":[],"src":"1220:8:4"},"parameters":{"id":1010,"nodeType":"ParameterList","parameters":[],"src":"1179:2:4"},"returnParameters":{"id":1020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1014,"mutability":"mutable","name":"stkPSYSData","nameLocation":"1282:11:4","nodeType":"VariableDeclaration","scope":1040,"src":"1259:34:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":1013,"nodeType":"UserDefinedTypeName","pathNode":{"id":1012,"name":"StakedTokenData","nameLocations":["1259:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1259:15:4"},"referencedDeclaration":888,"src":"1259:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":1017,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1040,"src":"1307:22:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":1016,"nodeType":"UserDefinedTypeName","pathNode":{"id":1015,"name":"StakedTokenData","nameLocations":["1307:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1307:15:4"},"referencedDeclaration":888,"src":"1307:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":1019,"mutability":"mutable","name":"ethPrice","nameLocation":"1402:8:4","nodeType":"VariableDeclaration","scope":1040,"src":"1394:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1018,"name":"uint256","nodeType":"ElementaryTypeName","src":"1394:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1245:175:4"},"scope":1575,"src":"1149:443:4","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[946],"body":{"id":1086,"nodeType":"Block","src":"2050:237:4","statements":[{"expression":{"id":1066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1061,"name":"stkPSYSData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1048,"src":"2060:11:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1063,"name":"STAKED_PSYS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"2094:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1064,"name":"ETH_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"2107:18:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1062,"name":"_getStakedTokenData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"2074:19:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenData_$888_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenData memory)"}},"id":1065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2074:52:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"src":"2060:66:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1067,"nodeType":"ExpressionStatement","src":"2060:66:4"},{"expression":{"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1068,"name":"stkPSYSUserData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1051,"src":"2136:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1070,"name":"STAKED_PSYS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"2178:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1071,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1043,"src":"2191:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1069,"name":"_getStakedTokenUserData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1534,"src":"2154:23:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenUserData_$901_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenUserData memory)"}},"id":1072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2154:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"src":"2136:60:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1074,"nodeType":"ExpressionStatement","src":"2136:60:4"},{"expression":{"id":1084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1075,"name":"ethPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1059,"src":"2206:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":1079,"name":"ETH_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"2245:18:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1078,"name":"AggregatorInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"2225:19:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AggregatorInterface_$785_$","typeString":"type(contract AggregatorInterface)"}},"id":1080,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2225:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AggregatorInterface_$785","typeString":"contract AggregatorInterface"}},"id":1081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2265:12:4","memberName":"latestAnswer","nodeType":"MemberAccess","referencedDeclaration":744,"src":"2225:52:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_int256_$","typeString":"function () view external returns (int256)"}},"id":1082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2225:54:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":1077,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2217:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1076,"name":"uint256","nodeType":"ElementaryTypeName","src":"2217:7:4","typeDescriptions":{}}},"id":1083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2217:63:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2206:74:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1085,"nodeType":"ExpressionStatement","src":"2206:74:4"}]},"documentation":{"id":1041,"nodeType":"StructuredDocumentation","src":"1598:40:4","text":"@inheritdoc IStakedTokenDataProvider"},"functionSelector":"cca44f0a","id":1087,"implemented":true,"kind":"function","modifiers":[],"name":"getAllStakedTokenUserData","nameLocation":"1652:25:4","nodeType":"FunctionDefinition","overrides":{"id":1045,"nodeType":"OverrideSpecifier","overrides":[],"src":"1744:8:4"},"parameters":{"id":1044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1043,"mutability":"mutable","name":"user","nameLocation":"1695:4:4","nodeType":"VariableDeclaration","scope":1087,"src":"1687:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1042,"name":"address","nodeType":"ElementaryTypeName","src":"1687:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1677:28:4"},"returnParameters":{"id":1060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1048,"mutability":"mutable","name":"stkPSYSData","nameLocation":"1806:11:4","nodeType":"VariableDeclaration","scope":1087,"src":"1783:34:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":1047,"nodeType":"UserDefinedTypeName","pathNode":{"id":1046,"name":"StakedTokenData","nameLocations":["1783:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1783:15:4"},"referencedDeclaration":888,"src":"1783:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":1051,"mutability":"mutable","name":"stkPSYSUserData","nameLocation":"1858:15:4","nodeType":"VariableDeclaration","scope":1087,"src":"1831:42:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"},"typeName":{"id":1050,"nodeType":"UserDefinedTypeName","pathNode":{"id":1049,"name":"StakedTokenUserData","nameLocations":["1831:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"1831:19:4"},"referencedDeclaration":901,"src":"1831:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"visibility":"internal"},{"constant":false,"id":1054,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1087,"src":"1887:22:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":1053,"nodeType":"UserDefinedTypeName","pathNode":{"id":1052,"name":"StakedTokenData","nameLocations":["1887:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"1887:15:4"},"referencedDeclaration":888,"src":"1887:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":1057,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1087,"src":"1951:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"},"typeName":{"id":1056,"nodeType":"UserDefinedTypeName","pathNode":{"id":1055,"name":"StakedTokenUserData","nameLocations":["1951:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"1951:19:4"},"referencedDeclaration":901,"src":"1951:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"visibility":"internal"},{"constant":false,"id":1059,"mutability":"mutable","name":"ethPrice","nameLocation":"2027:8:4","nodeType":"VariableDeclaration","scope":1087,"src":"2019:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1058,"name":"uint256","nodeType":"ElementaryTypeName","src":"2019:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1769:276:4"},"scope":1575,"src":"1643:644:4","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":1102,"nodeType":"Block","src":"2427:64:4","statements":[{"expression":{"arguments":[{"id":1098,"name":"stakedAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1089,"src":"2464:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1099,"name":"oracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1091,"src":"2477:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1097,"name":"_getStakedTokenData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"2444:19:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenData_$888_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenData memory)"}},"id":1100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2444:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"functionReturnParameters":1096,"id":1101,"nodeType":"Return","src":"2437:47:4"}]},"functionSelector":"deb66090","id":1103,"implemented":true,"kind":"function","modifiers":[],"name":"getStakedAssetData","nameLocation":"2302:18:4","nodeType":"FunctionDefinition","parameters":{"id":1092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1089,"mutability":"mutable","name":"stakedAsset","nameLocation":"2338:11:4","nodeType":"VariableDeclaration","scope":1103,"src":"2330:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1088,"name":"address","nodeType":"ElementaryTypeName","src":"2330:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1091,"mutability":"mutable","name":"oracle","nameLocation":"2367:6:4","nodeType":"VariableDeclaration","scope":1103,"src":"2359:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1090,"name":"address","nodeType":"ElementaryTypeName","src":"2359:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2320:59:4"},"returnParameters":{"id":1096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1095,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1103,"src":"2403:22:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":1094,"nodeType":"UserDefinedTypeName","pathNode":{"id":1093,"name":"StakedTokenData","nameLocations":["2403:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"2403:15:4"},"referencedDeclaration":888,"src":"2403:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"}],"src":"2402:24:4"},"scope":1575,"src":"2293:198:4","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":1128,"nodeType":"Block","src":"2680:110:4","statements":[{"expression":{"components":[{"arguments":[{"id":1119,"name":"stakedAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1105,"src":"2718:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1120,"name":"oracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1107,"src":"2731:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1118,"name":"_getStakedTokenData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"2698:19:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenData_$888_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenData memory)"}},"id":1121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2698:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},{"arguments":[{"id":1123,"name":"stakedAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1105,"src":"2764:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1124,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1109,"src":"2777:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1122,"name":"_getStakedTokenUserData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1534,"src":"2740:23:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenUserData_$901_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenUserData memory)"}},"id":1125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2740:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}}],"id":1126,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2697:86:4","typeDescriptions":{"typeIdentifier":"t_tuple$_t_struct$_StakedTokenData_$888_memory_ptr_$_t_struct$_StakedTokenUserData_$901_memory_ptr_$","typeString":"tuple(struct IStakedTokenDataProvider.StakedTokenData memory,struct IStakedTokenDataProvider.StakedTokenUserData memory)"}},"functionReturnParameters":1117,"id":1127,"nodeType":"Return","src":"2690:93:4"}]},"functionSelector":"ee4291ce","id":1129,"implemented":true,"kind":"function","modifiers":[],"name":"getStakedUserData","nameLocation":"2506:17:4","nodeType":"FunctionDefinition","parameters":{"id":1110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1105,"mutability":"mutable","name":"stakedAsset","nameLocation":"2541:11:4","nodeType":"VariableDeclaration","scope":1129,"src":"2533:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1104,"name":"address","nodeType":"ElementaryTypeName","src":"2533:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1107,"mutability":"mutable","name":"oracle","nameLocation":"2570:6:4","nodeType":"VariableDeclaration","scope":1129,"src":"2562:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1106,"name":"address","nodeType":"ElementaryTypeName","src":"2562:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1109,"mutability":"mutable","name":"user","nameLocation":"2594:4:4","nodeType":"VariableDeclaration","scope":1129,"src":"2586:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1108,"name":"address","nodeType":"ElementaryTypeName","src":"2586:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2523:81:4"},"returnParameters":{"id":1117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1113,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1129,"src":"2628:22:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":1112,"nodeType":"UserDefinedTypeName","pathNode":{"id":1111,"name":"StakedTokenData","nameLocations":["2628:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"2628:15:4"},"referencedDeclaration":888,"src":"2628:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":1116,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1129,"src":"2652:26:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"},"typeName":{"id":1115,"nodeType":"UserDefinedTypeName","pathNode":{"id":1114,"name":"StakedTokenUserData","nameLocations":["2652:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"2652:19:4"},"referencedDeclaration":901,"src":"2652:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"visibility":"internal"}],"src":"2627:52:4"},"scope":1575,"src":"2497:293:4","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":1207,"nodeType":"Block","src":"2970:470:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1145,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1132,"src":"2988:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3001:6:4","memberName":"length","nodeType":"MemberAccess","src":"2988:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":1147,"name":"oracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"3011:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3019:6:4","memberName":"length","nodeType":"MemberAccess","src":"3011:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2988:37:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"417272617973206d757374206265206f66207468652073616d65206c656e677468","id":1150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3027:35:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_79fde935345d5b8f36c4987772c888795595b0c99a35b3b75cbe3d9f98338f9e","typeString":"literal_string \"Arrays must be of the same length\""},"value":"Arrays must be of the same length"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_79fde935345d5b8f36c4987772c888795595b0c99a35b3b75cbe3d9f98338f9e","typeString":"literal_string \"Arrays must be of the same length\""}],"id":1144,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2980:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2980:83:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1152,"nodeType":"ExpressionStatement","src":"2980:83:4"},{"assignments":[1157],"declarations":[{"constant":false,"id":1157,"mutability":"mutable","name":"stakedData","nameLocation":"3099:10:4","nodeType":"VariableDeclaration","scope":1207,"src":"3074:35:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"},"typeName":{"baseType":{"id":1155,"nodeType":"UserDefinedTypeName","pathNode":{"id":1154,"name":"StakedTokenData","nameLocations":["3074:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"3074:15:4"},"referencedDeclaration":888,"src":"3074:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"id":1156,"nodeType":"ArrayTypeName","src":"3074:17:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"}},"visibility":"internal"}],"id":1165,"initialValue":{"arguments":[{"expression":{"id":1162,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1132,"src":"3134:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3147:6:4","memberName":"length","nodeType":"MemberAccess","src":"3134:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1161,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"3112:21:4","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct IStakedTokenDataProvider.StakedTokenData memory[] memory)"},"typeName":{"baseType":{"id":1159,"nodeType":"UserDefinedTypeName","pathNode":{"id":1158,"name":"StakedTokenData","nameLocations":["3116:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"3116:15:4"},"referencedDeclaration":888,"src":"3116:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"id":1160,"nodeType":"ArrayTypeName","src":"3116:17:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"}}},"id":1164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3112:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"3074:80:4"},{"assignments":[1167],"declarations":[{"constant":false,"id":1167,"mutability":"mutable","name":"ethPrice","nameLocation":"3172:8:4","nodeType":"VariableDeclaration","scope":1207,"src":"3164:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1166,"name":"uint256","nodeType":"ElementaryTypeName","src":"3164:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1176,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":1171,"name":"ETH_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"3211:18:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1170,"name":"AggregatorInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"3191:19:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AggregatorInterface_$785_$","typeString":"type(contract AggregatorInterface)"}},"id":1172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3191:39:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AggregatorInterface_$785","typeString":"contract AggregatorInterface"}},"id":1173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3231:12:4","memberName":"latestAnswer","nodeType":"MemberAccess","referencedDeclaration":744,"src":"3191:52:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_int256_$","typeString":"function () view external returns (int256)"}},"id":1174,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3191:54:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":1169,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3183:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1168,"name":"uint256","nodeType":"ElementaryTypeName","src":"3183:7:4","typeDescriptions":{}}},"id":1175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3183:63:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3164:82:4"},{"body":{"id":1201,"nodeType":"Block","src":"3306:89:4","statements":[{"expression":{"id":1199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1188,"name":"stakedData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1157,"src":"3320:10:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory[] memory"}},"id":1190,"indexExpression":{"id":1189,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3331:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3320:13:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":1192,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1132,"src":"3356:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1194,"indexExpression":{"id":1193,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3369:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3356:15:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":1195,"name":"oracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"3373:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1197,"indexExpression":{"id":1196,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3381:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3373:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1191,"name":"_getStakedTokenData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"3336:19:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenData_$888_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenData memory)"}},"id":1198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3336:48:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"src":"3320:64:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1200,"nodeType":"ExpressionStatement","src":"3320:64:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1181,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3276:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1182,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1132,"src":"3280:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3293:6:4","memberName":"length","nodeType":"MemberAccess","src":"3280:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3276:23:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1202,"initializationExpression":{"assignments":[1178],"declarations":[{"constant":false,"id":1178,"mutability":"mutable","name":"i","nameLocation":"3269:1:4","nodeType":"VariableDeclaration","scope":1202,"src":"3261:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1177,"name":"uint256","nodeType":"ElementaryTypeName","src":"3261:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1180,"initialValue":{"hexValue":"30","id":1179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3273:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3261:13:4"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":1186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3301:3:4","subExpression":{"id":1185,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1178,"src":"3301:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1187,"nodeType":"ExpressionStatement","src":"3301:3:4"},"nodeType":"ForStatement","src":"3256:139:4"},{"expression":{"components":[{"id":1203,"name":"stakedData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1157,"src":"3412:10:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory[] memory"}},{"id":1204,"name":"ethPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1167,"src":"3424:8:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1205,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3411:22:4","typeDescriptions":{"typeIdentifier":"t_tuple$_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_$_t_uint256_$","typeString":"tuple(struct IStakedTokenDataProvider.StakedTokenData memory[] memory,uint256)"}},"functionReturnParameters":1143,"id":1206,"nodeType":"Return","src":"3404:29:4"}]},"functionSelector":"026dc682","id":1208,"implemented":true,"kind":"function","modifiers":[],"name":"getStakedAssetDataBatch","nameLocation":"2805:23:4","nodeType":"FunctionDefinition","parameters":{"id":1136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1132,"mutability":"mutable","name":"stakedAssets","nameLocation":"2857:12:4","nodeType":"VariableDeclaration","scope":1208,"src":"2838:31:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1130,"name":"address","nodeType":"ElementaryTypeName","src":"2838:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1131,"nodeType":"ArrayTypeName","src":"2838:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1135,"mutability":"mutable","name":"oracles","nameLocation":"2898:7:4","nodeType":"VariableDeclaration","scope":1208,"src":"2879:26:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1133,"name":"address","nodeType":"ElementaryTypeName","src":"2879:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1134,"nodeType":"ArrayTypeName","src":"2879:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"}],"src":"2828:83:4"},"returnParameters":{"id":1143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1140,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1208,"src":"2935:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"},"typeName":{"baseType":{"id":1138,"nodeType":"UserDefinedTypeName","pathNode":{"id":1137,"name":"StakedTokenData","nameLocations":["2935:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"2935:15:4"},"referencedDeclaration":888,"src":"2935:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"id":1139,"nodeType":"ArrayTypeName","src":"2935:17:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"}},"visibility":"internal"},{"constant":false,"id":1142,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1208,"src":"2961:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1141,"name":"uint256","nodeType":"ElementaryTypeName","src":"2961:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2934:35:4"},"scope":1575,"src":"2796:644:4","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":1303,"nodeType":"Block","src":"3662:548:4","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1228,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1211,"src":"3680:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3693:6:4","memberName":"length","nodeType":"MemberAccess","src":"3680:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":1230,"name":"oracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1214,"src":"3703:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3711:6:4","memberName":"length","nodeType":"MemberAccess","src":"3703:14:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3680:37:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"417272617973206d757374206265206f66207468652073616d65206c656e677468","id":1233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3719:35:4","typeDescriptions":{"typeIdentifier":"t_stringliteral_79fde935345d5b8f36c4987772c888795595b0c99a35b3b75cbe3d9f98338f9e","typeString":"literal_string \"Arrays must be of the same length\""},"value":"Arrays must be of the same length"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_79fde935345d5b8f36c4987772c888795595b0c99a35b3b75cbe3d9f98338f9e","typeString":"literal_string \"Arrays must be of the same length\""}],"id":1227,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3672:7:4","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3672:83:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1235,"nodeType":"ExpressionStatement","src":"3672:83:4"},{"assignments":[1240],"declarations":[{"constant":false,"id":1240,"mutability":"mutable","name":"stakedData","nameLocation":"3790:10:4","nodeType":"VariableDeclaration","scope":1303,"src":"3765:35:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"},"typeName":{"baseType":{"id":1238,"nodeType":"UserDefinedTypeName","pathNode":{"id":1237,"name":"StakedTokenData","nameLocations":["3765:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"3765:15:4"},"referencedDeclaration":888,"src":"3765:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"id":1239,"nodeType":"ArrayTypeName","src":"3765:17:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"}},"visibility":"internal"}],"id":1248,"initialValue":{"arguments":[{"expression":{"id":1245,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1211,"src":"3825:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3838:6:4","memberName":"length","nodeType":"MemberAccess","src":"3825:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"3803:21:4","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct IStakedTokenDataProvider.StakedTokenData memory[] memory)"},"typeName":{"baseType":{"id":1242,"nodeType":"UserDefinedTypeName","pathNode":{"id":1241,"name":"StakedTokenData","nameLocations":["3807:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"3807:15:4"},"referencedDeclaration":888,"src":"3807:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"id":1243,"nodeType":"ArrayTypeName","src":"3807:17:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"}}},"id":1247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3803:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"3765:80:4"},{"assignments":[1253],"declarations":[{"constant":false,"id":1253,"mutability":"mutable","name":"userData","nameLocation":"3884:8:4","nodeType":"VariableDeclaration","scope":1303,"src":"3855:37:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData[]"},"typeName":{"baseType":{"id":1251,"nodeType":"UserDefinedTypeName","pathNode":{"id":1250,"name":"StakedTokenUserData","nameLocations":["3855:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"3855:19:4"},"referencedDeclaration":901,"src":"3855:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"id":1252,"nodeType":"ArrayTypeName","src":"3855:21:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenUserData_$901_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData[]"}},"visibility":"internal"}],"id":1261,"initialValue":{"arguments":[{"expression":{"id":1258,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1211,"src":"3921:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3934:6:4","memberName":"length","nodeType":"MemberAccess","src":"3921:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1257,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"3895:25:4","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct IStakedTokenDataProvider.StakedTokenUserData memory[] memory)"},"typeName":{"baseType":{"id":1255,"nodeType":"UserDefinedTypeName","pathNode":{"id":1254,"name":"StakedTokenUserData","nameLocations":["3899:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"3899:19:4"},"referencedDeclaration":901,"src":"3899:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"id":1256,"nodeType":"ArrayTypeName","src":"3899:21:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenUserData_$901_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData[]"}}},"id":1260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3895:46:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"3855:86:4"},{"body":{"id":1297,"nodeType":"Block","src":"4002:163:4","statements":[{"expression":{"id":1284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1273,"name":"stakedData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1240,"src":"4016:10:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory[] memory"}},"id":1275,"indexExpression":{"id":1274,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1263,"src":"4027:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4016:13:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":1277,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1211,"src":"4052:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1279,"indexExpression":{"id":1278,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1263,"src":"4065:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4052:15:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"baseExpression":{"id":1280,"name":"oracles","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1214,"src":"4069:7:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1282,"indexExpression":{"id":1281,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1263,"src":"4077:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4069:10:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1276,"name":"_getStakedTokenData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"4032:19:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenData_$888_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenData memory)"}},"id":1283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4032:48:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"src":"4016:64:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1285,"nodeType":"ExpressionStatement","src":"4016:64:4"},{"expression":{"id":1295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1286,"name":"userData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1253,"src":"4094:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory[] memory"}},"id":1288,"indexExpression":{"id":1287,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1263,"src":"4103:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4094:11:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":1290,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1211,"src":"4132:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1292,"indexExpression":{"id":1291,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1263,"src":"4145:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4132:15:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1293,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1216,"src":"4149:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1289,"name":"_getStakedTokenUserData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1534,"src":"4108:23:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenUserData_$901_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenUserData memory)"}},"id":1294,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4108:46:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"src":"4094:60:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1296,"nodeType":"ExpressionStatement","src":"4094:60:4"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1266,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1263,"src":"3972:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1267,"name":"stakedAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1211,"src":"3976:12:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[] calldata"}},"id":1268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3989:6:4","memberName":"length","nodeType":"MemberAccess","src":"3976:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3972:23:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1298,"initializationExpression":{"assignments":[1263],"declarations":[{"constant":false,"id":1263,"mutability":"mutable","name":"i","nameLocation":"3965:1:4","nodeType":"VariableDeclaration","scope":1298,"src":"3957:9:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1262,"name":"uint256","nodeType":"ElementaryTypeName","src":"3957:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1265,"initialValue":{"hexValue":"30","id":1264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3969:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"3957:13:4"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":1271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3997:3:4","subExpression":{"id":1270,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1263,"src":"3997:1:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1272,"nodeType":"ExpressionStatement","src":"3997:3:4"},"nodeType":"ForStatement","src":"3952:213:4"},{"expression":{"components":[{"id":1299,"name":"stakedData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1240,"src":"4182:10:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory[] memory"}},{"id":1300,"name":"userData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1253,"src":"4194:8:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory[] memory"}}],"id":1301,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4181:22:4","typeDescriptions":{"typeIdentifier":"t_tuple$_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_$_t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr_$","typeString":"tuple(struct IStakedTokenDataProvider.StakedTokenData memory[] memory,struct IStakedTokenDataProvider.StakedTokenUserData memory[] memory)"}},"functionReturnParameters":1226,"id":1302,"nodeType":"Return","src":"4174:29:4"}]},"functionSelector":"304fbe0d","id":1304,"implemented":true,"kind":"function","modifiers":[],"name":"getStakedUserDataBatch","nameLocation":"3455:22:4","nodeType":"FunctionDefinition","parameters":{"id":1217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1211,"mutability":"mutable","name":"stakedAssets","nameLocation":"3506:12:4","nodeType":"VariableDeclaration","scope":1304,"src":"3487:31:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1209,"name":"address","nodeType":"ElementaryTypeName","src":"3487:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1210,"nodeType":"ArrayTypeName","src":"3487:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1214,"mutability":"mutable","name":"oracles","nameLocation":"3547:7:4","nodeType":"VariableDeclaration","scope":1304,"src":"3528:26:4","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_calldata_ptr","typeString":"address[]"},"typeName":{"baseType":{"id":1212,"name":"address","nodeType":"ElementaryTypeName","src":"3528:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1213,"nodeType":"ArrayTypeName","src":"3528:9:4","typeDescriptions":{"typeIdentifier":"t_array$_t_address_$dyn_storage_ptr","typeString":"address[]"}},"visibility":"internal"},{"constant":false,"id":1216,"mutability":"mutable","name":"user","nameLocation":"3572:4:4","nodeType":"VariableDeclaration","scope":1304,"src":"3564:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1215,"name":"address","nodeType":"ElementaryTypeName","src":"3564:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3477:105:4"},"returnParameters":{"id":1226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1221,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1304,"src":"3606:24:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"},"typeName":{"baseType":{"id":1219,"nodeType":"UserDefinedTypeName","pathNode":{"id":1218,"name":"StakedTokenData","nameLocations":["3606:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"3606:15:4"},"referencedDeclaration":888,"src":"3606:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"id":1220,"nodeType":"ArrayTypeName","src":"3606:17:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenData_$888_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData[]"}},"visibility":"internal"},{"constant":false,"id":1225,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1304,"src":"3632:28:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData[]"},"typeName":{"baseType":{"id":1223,"nodeType":"UserDefinedTypeName","pathNode":{"id":1222,"name":"StakedTokenUserData","nameLocations":["3632:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"3632:19:4"},"referencedDeclaration":901,"src":"3632:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"id":1224,"nodeType":"ArrayTypeName","src":"3632:21:4","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_StakedTokenUserData_$901_storage_$dyn_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData[]"}},"visibility":"internal"}],"src":"3605:56:4"},"scope":1575,"src":"3446:764:4","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[957],"body":{"id":1330,"nodeType":"Block","src":"4420:153:4","statements":[{"expression":{"id":1321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1316,"name":"stkPSYSData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1311,"src":"4430:11:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1318,"name":"STAKED_PSYS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"4464:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1319,"name":"ETH_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":974,"src":"4477:18:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1317,"name":"_getStakedTokenData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"4444:19:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenData_$888_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenData memory)"}},"id":1320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4444:52:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"src":"4430:66:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1322,"nodeType":"ExpressionStatement","src":"4430:66:4"},{"expression":{"id":1328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1323,"name":"stkPSYSUserData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1314,"src":"4506:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1325,"name":"STAKED_PSYS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"4548:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1326,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1306,"src":"4561:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1324,"name":"_getStakedTokenUserData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1534,"src":"4524:23:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_struct$_StakedTokenUserData_$901_memory_ptr_$","typeString":"function (address,address) view returns (struct IStakedTokenDataProvider.StakedTokenUserData memory)"}},"id":1327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4524:42:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"src":"4506:60:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1329,"nodeType":"ExpressionStatement","src":"4506:60:4"}]},"functionSelector":"e33db4e2","id":1331,"implemented":true,"kind":"function","modifiers":[],"name":"getstkPSYSUserData","nameLocation":"4225:18:4","nodeType":"FunctionDefinition","overrides":{"id":1308,"nodeType":"OverrideSpecifier","overrides":[],"src":"4310:8:4"},"parameters":{"id":1307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1306,"mutability":"mutable","name":"user","nameLocation":"4261:4:4","nodeType":"VariableDeclaration","scope":1331,"src":"4253:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1305,"name":"address","nodeType":"ElementaryTypeName","src":"4253:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4243:28:4"},"returnParameters":{"id":1315,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1311,"mutability":"mutable","name":"stkPSYSData","nameLocation":"4359:11:4","nodeType":"VariableDeclaration","scope":1331,"src":"4336:34:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":1310,"nodeType":"UserDefinedTypeName","pathNode":{"id":1309,"name":"StakedTokenData","nameLocations":["4336:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"4336:15:4"},"referencedDeclaration":888,"src":"4336:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"},{"constant":false,"id":1314,"mutability":"mutable","name":"stkPSYSUserData","nameLocation":"4399:15:4","nodeType":"VariableDeclaration","scope":1331,"src":"4372:42:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"},"typeName":{"id":1313,"nodeType":"UserDefinedTypeName","pathNode":{"id":1312,"name":"StakedTokenUserData","nameLocations":["4372:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"4372:19:4"},"referencedDeclaration":901,"src":"4372:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"visibility":"internal"}],"src":"4335:80:4"},"scope":1575,"src":"4216:357:4","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":1462,"nodeType":"Block","src":"4719:1134:4","statements":[{"assignments":[1343],"declarations":[{"constant":false,"id":1343,"mutability":"mutable","name":"stkToken","nameLocation":"4752:8:4","nodeType":"VariableDeclaration","scope":1462,"src":"4729:31:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"},"typeName":{"id":1342,"nodeType":"UserDefinedTypeName","pathNode":{"id":1341,"name":"AggregatedStakedPSYSV3","nameLocations":["4729:22:4"],"nodeType":"IdentifierPath","referencedDeclaration":737,"src":"4729:22:4"},"referencedDeclaration":737,"src":"4729:22:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"visibility":"internal"}],"id":1347,"initialValue":{"arguments":[{"id":1345,"name":"stakedToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1333,"src":"4786:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1344,"name":"AggregatedStakedPSYSV3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"4763:22:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AggregatedStakedPSYSV3_$737_$","typeString":"type(contract AggregatedStakedPSYSV3)"}},"id":1346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4763:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"nodeType":"VariableDeclarationStatement","src":"4729:69:4"},{"expression":{"id":1354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1348,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"4817:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1350,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4822:22:4","memberName":"stakedTokenTotalSupply","nodeType":"MemberAccess","referencedDeclaration":867,"src":"4817:27:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1351,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"4847:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4856:11:4","memberName":"totalSupply","nodeType":"MemberAccess","referencedDeclaration":709,"src":"4847:20:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":1353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4847:22:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4817:52:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1355,"nodeType":"ExpressionStatement","src":"4817:52:4"},{"expression":{"id":1364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1356,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"4879:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1358,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4884:32:4","memberName":"stakedTokenTotalRedeemableAmount","nodeType":"MemberAccess","referencedDeclaration":869,"src":"4879:37:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1361,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"4942:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1362,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4947:22:4","memberName":"stakedTokenTotalSupply","nodeType":"MemberAccess","referencedDeclaration":867,"src":"4942:27:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1359,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"4919:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4928:13:4","memberName":"previewRedeem","nodeType":"MemberAccess","referencedDeclaration":599,"src":"4919:22:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":1363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4919:51:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4879:91:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1365,"nodeType":"ExpressionStatement","src":"4879:91:4"},{"expression":{"id":1372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1366,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"4980:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1368,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4985:20:4","memberName":"stakeCooldownSeconds","nodeType":"MemberAccess","referencedDeclaration":871,"src":"4980:25:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1369,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"5008:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5017:18:4","memberName":"getCooldownSeconds","nodeType":"MemberAccess","referencedDeclaration":463,"src":"5008:27:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":1371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5008:29:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4980:57:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1373,"nodeType":"ExpressionStatement","src":"4980:57:4"},{"expression":{"id":1380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1374,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5047:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1376,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5052:18:4","memberName":"stakeUnstakeWindow","nodeType":"MemberAccess","referencedDeclaration":873,"src":"5047:23:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1377,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"5073:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5082:14:4","memberName":"UNSTAKE_WINDOW","nodeType":"MemberAccess","referencedDeclaration":249,"src":"5073:23:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":1379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5073:25:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5047:51:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1381,"nodeType":"ExpressionStatement","src":"5047:51:4"},{"expression":{"id":1393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1382,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5108:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1384,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5113:19:4","memberName":"rewardTokenPriceEth","nodeType":"MemberAccess","referencedDeclaration":877,"src":"5108:24:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"id":1388,"name":"PSYS_USD_PRICE_FEED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":977,"src":"5163:19:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1387,"name":"AggregatorInterface","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":785,"src":"5143:19:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AggregatorInterface_$785_$","typeString":"type(contract AggregatorInterface)"}},"id":1389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5143:40:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AggregatorInterface_$785","typeString":"contract AggregatorInterface"}},"id":1390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5184:12:4","memberName":"latestAnswer","nodeType":"MemberAccess","referencedDeclaration":744,"src":"5143:53:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_int256_$","typeString":"function () view external returns (int256)"}},"id":1391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5143:55:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":1386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5135:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1385,"name":"uint256","nodeType":"ElementaryTypeName","src":"5135:7:4","typeDescriptions":{}}},"id":1392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5135:64:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5108:91:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1394,"nodeType":"ExpressionStatement","src":"5108:91:4"},{"expression":{"id":1401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1395,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5209:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1397,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5214:15:4","memberName":"distributionEnd","nodeType":"MemberAccess","referencedDeclaration":881,"src":"5209:20:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1398,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"5232:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5241:16:4","memberName":"DISTRIBUTION_END","nodeType":"MemberAccess","referencedDeclaration":179,"src":"5232:25:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":1400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5232:27:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5209:50:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1402,"nodeType":"ExpressionStatement","src":"5209:50:4"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1403,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5282:5:4","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5288:9:4","memberName":"timestamp","nodeType":"MemberAccess","src":"5282:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":1405,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5300:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1406,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5305:15:4","memberName":"distributionEnd","nodeType":"MemberAccess","referencedDeclaration":881,"src":"5300:20:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5282:38:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1425,"nodeType":"IfStatement","src":"5278:200:4","trueBody":{"id":1424,"nodeType":"Block","src":"5322:156:4","statements":[{"assignments":[1409,null,null],"declarations":[{"constant":false,"id":1409,"mutability":"mutable","name":"emissionPerSecond","nameLocation":"5345:17:4","nodeType":"VariableDeclaration","scope":1424,"src":"5337:25:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1408,"name":"uint256","nodeType":"ElementaryTypeName","src":"5337:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},null,null],"id":1417,"initialValue":{"arguments":[{"arguments":[{"id":1414,"name":"stakedToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1333,"src":"5394:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1413,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5386:7:4","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1412,"name":"address","nodeType":"ElementaryTypeName","src":"5386:7:4","typeDescriptions":{}}},"id":1415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5386:20:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1410,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"5370:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5379:6:4","memberName":"assets","nodeType":"MemberAccess","referencedDeclaration":308,"src":"5370:15:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint128_$_t_uint128_$_t_uint256_$","typeString":"function (address) view external returns (uint128,uint128,uint256)"}},"id":1416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5370:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint128_$_t_uint128_$_t_uint256_$","typeString":"tuple(uint128,uint128,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5336:71:4"},{"expression":{"id":1422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1418,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5421:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1420,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5426:21:4","memberName":"distributionPerSecond","nodeType":"MemberAccess","referencedDeclaration":879,"src":"5421:26:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1421,"name":"emissionPerSecond","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1409,"src":"5450:17:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5421:46:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1423,"nodeType":"ExpressionStatement","src":"5421:46:4"}]}},{"expression":{"id":1431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1426,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5488:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1428,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5493:19:4","memberName":"stakedTokenPriceEth","nodeType":"MemberAccess","referencedDeclaration":875,"src":"5488:24:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":1429,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5515:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1430,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5520:19:4","memberName":"rewardTokenPriceEth","nodeType":"MemberAccess","referencedDeclaration":877,"src":"5515:24:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5488:51:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1432,"nodeType":"ExpressionStatement","src":"5488:51:4"},{"expression":{"id":1439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1433,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5549:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1435,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5554:19:4","memberName":"currentExchangeRate","nodeType":"MemberAccess","referencedDeclaration":885,"src":"5549:24:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1436,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"5576:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5585:15:4","memberName":"getExchangeRate","nodeType":"MemberAccess","referencedDeclaration":477,"src":"5576:24:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint216_$","typeString":"function () view external returns (uint216)"}},"id":1438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5576:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"5549:53:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1440,"nodeType":"ExpressionStatement","src":"5549:53:4"},{"expression":{"id":1447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1441,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5612:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1443,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5617:22:4","memberName":"maxSlashablePercentage","nodeType":"MemberAccess","referencedDeclaration":887,"src":"5612:27:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1444,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1343,"src":"5642:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5651:25:4","memberName":"getMaxSlashablePercentage","nodeType":"MemberAccess","referencedDeclaration":495,"src":"5642:34:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint256_$","typeString":"function () view external returns (uint256)"}},"id":1446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5642:36:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5612:66:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1448,"nodeType":"ExpressionStatement","src":"5612:66:4"},{"expression":{"id":1460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1449,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5688:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1451,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5693:8:4","memberName":"stakeApy","nodeType":"MemberAccess","referencedDeclaration":883,"src":"5688:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1453,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5731:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1454,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5736:21:4","memberName":"distributionPerSecond","nodeType":"MemberAccess","referencedDeclaration":879,"src":"5731:26:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1455,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5771:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1456,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5776:22:4","memberName":"stakedTokenTotalSupply","nodeType":"MemberAccess","referencedDeclaration":867,"src":"5771:27:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":1457,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1339,"src":"5812:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData memory"}},"id":1458,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5817:19:4","memberName":"currentExchangeRate","nodeType":"MemberAccess","referencedDeclaration":885,"src":"5812:24:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1452,"name":"_calculateApy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1574,"src":"5704:13:4","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":1459,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5704:142:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5688:158:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1461,"nodeType":"ExpressionStatement","src":"5688:158:4"}]},"id":1463,"implemented":true,"kind":"function","modifiers":[],"name":"_getStakedTokenData","nameLocation":"4588:19:4","nodeType":"FunctionDefinition","parameters":{"id":1336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1333,"mutability":"mutable","name":"stakedToken","nameLocation":"4625:11:4","nodeType":"VariableDeclaration","scope":1463,"src":"4617:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1332,"name":"address","nodeType":"ElementaryTypeName","src":"4617:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1335,"mutability":"mutable","name":"oracle","nameLocation":"4654:6:4","nodeType":"VariableDeclaration","scope":1463,"src":"4646:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1334,"name":"address","nodeType":"ElementaryTypeName","src":"4646:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4607:59:4"},"returnParameters":{"id":1340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1339,"mutability":"mutable","name":"data","nameLocation":"4713:4:4","nodeType":"VariableDeclaration","scope":1463,"src":"4690:27:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"},"typeName":{"id":1338,"nodeType":"UserDefinedTypeName","pathNode":{"id":1337,"name":"StakedTokenData","nameLocations":["4690:15:4"],"nodeType":"IdentifierPath","referencedDeclaration":888,"src":"4690:15:4"},"referencedDeclaration":888,"src":"4690:15:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenData_$888_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenData"}},"visibility":"internal"}],"src":"4689:29:4"},"scope":1575,"src":"4579:1274:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1533,"nodeType":"Block","src":"6005:546:4","statements":[{"assignments":[1475],"declarations":[{"constant":false,"id":1475,"mutability":"mutable","name":"stkToken","nameLocation":"6038:8:4","nodeType":"VariableDeclaration","scope":1533,"src":"6015:31:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"},"typeName":{"id":1474,"nodeType":"UserDefinedTypeName","pathNode":{"id":1473,"name":"AggregatedStakedPSYSV3","nameLocations":["6015:22:4"],"nodeType":"IdentifierPath","referencedDeclaration":737,"src":"6015:22:4"},"referencedDeclaration":737,"src":"6015:22:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"visibility":"internal"}],"id":1479,"initialValue":{"arguments":[{"id":1477,"name":"stakedToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1465,"src":"6072:11:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1476,"name":"AggregatedStakedPSYSV3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"6049:22:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_AggregatedStakedPSYSV3_$737_$","typeString":"type(contract AggregatedStakedPSYSV3)"}},"id":1478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6049:35:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"nodeType":"VariableDeclarationStatement","src":"6015:69:4"},{"expression":{"id":1487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1480,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1471,"src":"6103:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1482,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6108:22:4","memberName":"stakedTokenUserBalance","nodeType":"MemberAccess","referencedDeclaration":890,"src":"6103:27:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1485,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"6152:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1483,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"6133:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6142:9:4","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":315,"src":"6133:18:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":1486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6133:24:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6103:54:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1488,"nodeType":"ExpressionStatement","src":"6103:54:4"},{"expression":{"id":1500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1489,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1471,"src":"6167:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1491,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6172:26:4","memberName":"underlyingTokenUserBalance","nodeType":"MemberAccess","referencedDeclaration":892,"src":"6167:31:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1498,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"6243:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1493,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"6208:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6217:12:4","memberName":"STAKED_TOKEN","nodeType":"MemberAccess","referencedDeclaration":244,"src":"6208:21:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":1495,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6208:23:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1492,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":863,"src":"6201:6:4","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$863_$","typeString":"type(contract IERC20)"}},"id":1496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6201:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$863","typeString":"contract IERC20"}},"id":1497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6233:9:4","memberName":"balanceOf","nodeType":"MemberAccess","referencedDeclaration":820,"src":"6201:41:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":1499,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6201:47:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6167:81:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1501,"nodeType":"ExpressionStatement","src":"6167:81:4"},{"expression":{"id":1510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1502,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1471,"src":"6258:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1504,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6263:27:4","memberName":"stakedTokenRedeemableAmount","nodeType":"MemberAccess","referencedDeclaration":894,"src":"6258:32:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":1507,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1471,"src":"6316:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1508,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6321:22:4","memberName":"stakedTokenUserBalance","nodeType":"MemberAccess","referencedDeclaration":890,"src":"6316:27:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":1505,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"6293:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1506,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6302:13:4","memberName":"previewRedeem","nodeType":"MemberAccess","referencedDeclaration":599,"src":"6293:22:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view external returns (uint256)"}},"id":1509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6293:51:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6258:86:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1511,"nodeType":"ExpressionStatement","src":"6258:86:4"},{"expression":{"id":1519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":1512,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1471,"src":"6354:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1514,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6359:14:4","memberName":"rewardsToClaim","nodeType":"MemberAccess","referencedDeclaration":896,"src":"6354:19:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1517,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"6408:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1515,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"6376:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6385:22:4","memberName":"getTotalRewardsBalance","nodeType":"MemberAccess","referencedDeclaration":529,"src":"6376:31:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view external returns (uint256)"}},"id":1518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6376:37:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6354:59:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1520,"nodeType":"ExpressionStatement","src":"6354:59:4"},{"expression":{"id":1531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"expression":{"id":1521,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1471,"src":"6466:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1523,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6471:17:4","memberName":"cooldownTimestamp","nodeType":"MemberAccess","referencedDeclaration":898,"src":"6466:22:4","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"expression":{"id":1524,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1471,"src":"6490:4:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData memory"}},"id":1525,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6495:14:4","memberName":"cooldownAmount","nodeType":"MemberAccess","referencedDeclaration":900,"src":"6490:19:4","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}}],"id":1526,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6465:45:4","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint40_$_t_uint216_$","typeString":"tuple(uint40,uint216)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1529,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"6539:4:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1527,"name":"stkToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1475,"src":"6513:8:4","typeDescriptions":{"typeIdentifier":"t_contract$_AggregatedStakedPSYSV3_$737","typeString":"contract AggregatedStakedPSYSV3"}},"id":1528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6522:16:4","memberName":"stakersCooldowns","nodeType":"MemberAccess","referencedDeclaration":699,"src":"6513:25:4","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$returns$_t_uint40_$_t_uint216_$","typeString":"function (address) view external returns (uint40,uint216)"}},"id":1530,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6513:31:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint40_$_t_uint216_$","typeString":"tuple(uint40,uint216)"}},"src":"6465:79:4","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1532,"nodeType":"ExpressionStatement","src":"6465:79:4"}]},"id":1534,"implemented":true,"kind":"function","modifiers":[],"name":"_getStakedTokenUserData","nameLocation":"5868:23:4","nodeType":"FunctionDefinition","parameters":{"id":1468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1465,"mutability":"mutable","name":"stakedToken","nameLocation":"5909:11:4","nodeType":"VariableDeclaration","scope":1534,"src":"5901:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1464,"name":"address","nodeType":"ElementaryTypeName","src":"5901:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1467,"mutability":"mutable","name":"user","nameLocation":"5938:4:4","nodeType":"VariableDeclaration","scope":1534,"src":"5930:12:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1466,"name":"address","nodeType":"ElementaryTypeName","src":"5930:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5891:57:4"},"returnParameters":{"id":1472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1471,"mutability":"mutable","name":"data","nameLocation":"5999:4:4","nodeType":"VariableDeclaration","scope":1534,"src":"5972:31:4","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_memory_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"},"typeName":{"id":1470,"nodeType":"UserDefinedTypeName","pathNode":{"id":1469,"name":"StakedTokenUserData","nameLocations":["5972:19:4"],"nodeType":"IdentifierPath","referencedDeclaration":901,"src":"5972:19:4"},"referencedDeclaration":901,"src":"5972:19:4","typeDescriptions":{"typeIdentifier":"t_struct$_StakedTokenUserData_$901_storage_ptr","typeString":"struct IStakedTokenDataProvider.StakedTokenUserData"}},"visibility":"internal"}],"src":"5971:33:4"},"scope":1575,"src":"5859:692:4","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1573,"nodeType":"Block","src":"6716:276:4","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1545,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1538,"src":"6730:11:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6745:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6730:16:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1550,"nodeType":"IfStatement","src":"6726:30:4","trueBody":{"expression":{"hexValue":"30","id":1548,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6755:1:4","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1544,"id":1549,"nodeType":"Return","src":"6748:8:4"}},{"assignments":[1552],"declarations":[{"constant":false,"id":1552,"mutability":"mutable","name":"yearlyRewards","nameLocation":"6783:13:4","nodeType":"VariableDeclaration","scope":1573,"src":"6775:21:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1551,"name":"uint256","nodeType":"ElementaryTypeName","src":"6775:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1556,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1553,"name":"distributionPerSecond","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1536,"src":"6799:21:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1554,"name":"SECONDS_PER_YEAR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"6823:16:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6799:40:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6775:64:4"},{"assignments":[1558],"declarations":[{"constant":false,"id":1558,"mutability":"mutable","name":"adjustedRewards","nameLocation":"6857:15:4","nodeType":"VariableDeclaration","scope":1573,"src":"6849:23:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1557,"name":"uint256","nodeType":"ElementaryTypeName","src":"6849:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1565,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1559,"name":"yearlyRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1552,"src":"6876:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1560,"name":"exchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1540,"src":"6892:12:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6876:28:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1562,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6875:30:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"31653138","id":1563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6908:4:4","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"src":"6875:37:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6849:63:4"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1566,"name":"adjustedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1558,"src":"6939:15:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":1567,"name":"APY_PRECISION","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":986,"src":"6957:13:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6939:31:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1569,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6938:33:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":1570,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1538,"src":"6974:11:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6938:47:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1544,"id":1572,"nodeType":"Return","src":"6931:54:4"}]},"id":1574,"implemented":true,"kind":"function","modifiers":[],"name":"_calculateApy","nameLocation":"6566:13:4","nodeType":"FunctionDefinition","parameters":{"id":1541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1536,"mutability":"mutable","name":"distributionPerSecond","nameLocation":"6597:21:4","nodeType":"VariableDeclaration","scope":1574,"src":"6589:29:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1535,"name":"uint256","nodeType":"ElementaryTypeName","src":"6589:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1538,"mutability":"mutable","name":"totalSupply","nameLocation":"6636:11:4","nodeType":"VariableDeclaration","scope":1574,"src":"6628:19:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1537,"name":"uint256","nodeType":"ElementaryTypeName","src":"6628:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1540,"mutability":"mutable","name":"exchangeRate","nameLocation":"6665:12:4","nodeType":"VariableDeclaration","scope":1574,"src":"6657:20:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1539,"name":"uint256","nodeType":"ElementaryTypeName","src":"6657:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6579:104:4"},"returnParameters":{"id":1544,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1543,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1574,"src":"6707:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1542,"name":"uint256","nodeType":"ElementaryTypeName","src":"6707:7:4","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6706:9:4"},"scope":1575,"src":"6557:435:4","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":1576,"src":"509:6485:4","usedErrors":[],"usedEvents":[]}],"src":"32:6962:4"},"id":4}},"contracts":{"contracts/interfaces/AggregatedStakedPSYSV3.sol":{"AggregatedStakedPSYSV3":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"emission","type":"uint256"}],"name":"AssetConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"AssetIndexUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Cooldown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"CooldownSecondsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"delegatee","type":"address"},{"indexed":false,"internalType":"uint8","name":"delegationType","type":"uint8"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"delegationType","type":"uint8"}],"name":"DelegatedPowerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint216","name":"exchangeRate","type":"uint216"}],"name":"ExchangeRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsReturned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newDebtToken","type":"address"}],"name":"GHODebtTokenChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"MaxSlashablePercentageChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingAdmin","type":"address"},{"indexed":false,"internalType":"uint256","name":"role","type":"uint256"}],"name":"PendingAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsAccrued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"},{"indexed":false,"internalType":"uint256","name":"role","type":"uint256"}],"name":"RoleClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Slashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"windowSeconds","type":"uint256"}],"name":"SlashingExitWindowDurationChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"SlashingSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"UserIndexUpdated","type":"event"},{"inputs":[],"name":"CLAIM_HELPER_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLDOWN_ADMIN_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLDOWN_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_BY_TYPE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISTRIBUTION_END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EIP712_REVISION","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSION_MANAGER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXCHANGE_RATE_UNIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_EXCHANGE_RATE","outputs":[{"internalType":"uint216","name":"","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOWER_BOUND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"REWARDS_VAULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_TOKEN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLASH_ADMIN_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKED_TOKEN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNSTAKE_WINDOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_aaveGovernance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"_votingSnapshots","outputs":[{"internalType":"uint128","name":"blockNumber","type":"uint128"},{"internalType":"uint128","name":"value","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_votingSnapshotsCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"assets","outputs":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint128","name":"lastUpdateTimestamp","type":"uint128"},{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsAndStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsAndStakeOnBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsOnBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"claimRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint256","name":"totalStaked","type":"uint256"},{"internalType":"address","name":"underlyingAsset","type":"address"}],"internalType":"struct AggregatedStakedPSYSV3.AssetConfigInput[]","name":"assetsConfigInput","type":"tuple[]"}],"name":"configureAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"cooldownOnBehalfOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint8","name":"delegationType","type":"uint8"}],"name":"delegateByType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint8","name":"delegationType","type":"uint8"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateByTypeBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"getAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCooldownSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"},{"internalType":"uint8","name":"delegationType","type":"uint8"}],"name":"getDelegateeByType","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExchangeRate","outputs":[{"internalType":"uint216","name":"","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"index","type":"uint32"}],"name":"getExchangeRateSnapshot","outputs":[{"components":[{"internalType":"uint40","name":"blockNumber","type":"uint40"},{"internalType":"uint216","name":"value","type":"uint216"}],"internalType":"struct AggregatedStakedPSYSV3.ExchangeRateSnapshot","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExchangeRateSnapshotsCount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSlashablePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"getPendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"uint8","name":"delegationType","type":"uint8"}],"name":"getPowerAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint8","name":"delegationType","type":"uint8"}],"name":"getPowerCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTotalRewardsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"asset","type":"address"}],"name":"getUserAssetData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghoDebtToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inPostSlashingPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"slashingAdmin","type":"address"},{"internalType":"address","name":"cooldownPauseAdmin","type":"address"},{"internalType":"address","name":"claimHelper","type":"address"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"},{"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"returnFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"setCooldownSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newGHODebtToken","type":"address"}],"name":"setGHODebtToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxSlashablePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"},{"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"setPendingAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleSlashing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"stakeWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakerRewardsToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakersCooldowns","outputs":[{"internalType":"uint40","name":"timestamp","type":"uint40"},{"internalType":"uint216","name":"amount","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"CLAIM_HELPER_ROLE()":"dbc0ed8a","COOLDOWN_ADMIN_ROLE()":"9e3ffce0","COOLDOWN_SECONDS()":"72b49d63","DELEGATE_BY_TYPE_TYPEHASH()":"aa9fbe02","DELEGATE_TYPEHASH()":"41cbf54a","DISTRIBUTION_END()":"919cd40f","DOMAIN_SEPARATOR()":"3644e515","EIP712_REVISION()":"78160376","EMISSION_MANAGER()":"cbcbb507","EXCHANGE_RATE_UNIT()":"8e9b2ca4","INITIAL_EXCHANGE_RATE()":"58146d17","LOWER_BOUND()":"6198e135","PERMIT_TYPEHASH()":"30adf81f","PRECISION()":"aaf5eb68","REVISION()":"dde43cba","REWARDS_VAULT()":"946776cd","REWARD_TOKEN()":"99248ea7","SLASH_ADMIN_ROLE()":"8c9a281d","STAKED_TOKEN()":"312f6b83","UNSTAKE_WINDOW()":"359c4a96","_aaveGovernance()":"c3863ada","_nonces(address)":"b9844d8d","_votingSnapshots(address,uint256)":"5b3cc0cf","_votingSnapshotsCounts(address)":"7bb73c97","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","assets(address)":"f11b8188","balanceOf(address)":"70a08231","claimRewards(address,uint256)":"9a99b4f0","claimRewardsAndRedeem(address,uint256,uint256)":"eab52318","claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)":"9c9b5154","claimRewardsAndStake(address,uint256)":"955e18af","claimRewardsAndStakeOnBehalf(address,address,uint256)":"c18f539a","claimRewardsOnBehalf(address,address,uint256)":"20fb80b5","claimRoleAdmin(uint256)":"fde9eb69","configureAssets((uint128,uint256,address)[])":"b2a5dbfa","cooldown()":"787a08a6","cooldownOnBehalfOf(address)":"250201db","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegateByType(address,uint8)":"dc937e1c","delegateByTypeBySig(address,uint8,uint256,uint256,uint8,bytes32,bytes32)":"f713d8a8","getAdmin(uint256)":"111fd88b","getCooldownSeconds()":"616e0bf9","getDelegateeByType(address,uint8)":"6f50458d","getExchangeRate()":"e6aa216c","getExchangeRateSnapshot(uint32)":"8ef98e0e","getExchangeRateSnapshotsCount()":"60ba192b","getMaxSlashablePercentage()":"f34d96da","getPendingAdmin(uint256)":"4575e69b","getPowerAtBlock(address,uint256,uint8)":"c2ffbb91","getPowerCurrent(address,uint8)":"b2f4201d","getTotalRewardsBalance(address)":"8dbefee2","getUserAssetData(address,address)":"3373ee4c","ghoDebtToken()":"174ed542","inPostSlashingPeriod()":"f036bc68","increaseAllowance(address,uint256)":"39509351","initialize(address,address,address,uint256,uint256)":"a6b63eb8","name()":"06fdde03","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","previewRedeem(uint256)":"4cdad506","previewStake(uint256)":"727a5d57","redeem(address,uint256)":"1e9a6950","redeemOnBehalf(address,address,uint256)":"112d037c","returnFunds(uint256)":"45755dd6","setCooldownSeconds(uint256)":"7b5b1157","setGHODebtToken(address)":"4998fffd","setMaxSlashablePercentage(uint256)":"74011f56","setPendingAdmin(uint256,address)":"ab406fe6","settleSlashing()":"aff05aa9","slash(address,uint256)":"02fb4d85","stake(address,uint256)":"adc9772e","stakeWithPermit(address,uint256,uint256,uint8,bytes32,bytes32)":"73d6a889","stakerRewardsToClaim(address)":"7e90d7ef","stakersCooldowns(address)":"091030c3","symbol()":"95d89b41","totalSupply()":"18160ddd","totalSupplyAt(uint256)":"981b24d0","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"emission\",\"type\":\"uint256\"}],\"name\":\"AssetConfigUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"AssetIndexUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Cooldown\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"CooldownSecondsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegatedPowerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint216\",\"name\":\"exchangeRate\",\"type\":\"uint216\"}],\"name\":\"ExchangeRateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"FundsReturned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newDebtToken\",\"type\":\"address\"}],\"name\":\"GHODebtTokenChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newPercentage\",\"type\":\"uint256\"}],\"name\":\"MaxSlashablePercentageChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newPendingAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"PendingAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Redeem\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsAccrued\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"RoleClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Slashed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"windowSeconds\",\"type\":\"uint256\"}],\"name\":\"SlashingExitWindowDurationChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"SlashingSettled\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"UserIndexUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLAIM_HELPER_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COOLDOWN_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COOLDOWN_SECONDS\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_BY_TYPE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DISTRIBUTION_END\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EIP712_REVISION\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EMISSION_MANAGER\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXCHANGE_RATE_UNIT\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"INITIAL_EXCHANGE_RATE\",\"outputs\":[{\"internalType\":\"uint216\",\"name\":\"\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"LOWER_BOUND\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PERMIT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PRECISION\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REVISION\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARDS_VAULT\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARD_TOKEN\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"SLASH_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"STAKED_TOKEN\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UNSTAKE_WINDOW\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"_aaveGovernance\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"_votingSnapshots\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"blockNumber\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"value\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_votingSnapshotsCounts\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"assets\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"lastUpdateTimestamp\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndStakeOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"claimRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"underlyingAsset\",\"type\":\"address\"}],\"internalType\":\"struct AggregatedStakedPSYSV3.AssetConfigInput[]\",\"name\":\"assetsConfigInput\",\"type\":\"tuple[]\"}],\"name\":\"configureAssets\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooldown\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"}],\"name\":\"cooldownOnBehalfOf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"delegateByType\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"delegationType\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateByTypeBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"getAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getCooldownSeconds\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getDelegateeByType\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getExchangeRate\",\"outputs\":[{\"internalType\":\"uint216\",\"name\":\"\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"index\",\"type\":\"uint32\"}],\"name\":\"getExchangeRateSnapshot\",\"outputs\":[{\"components\":[{\"internalType\":\"uint40\",\"name\":\"blockNumber\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"value\",\"type\":\"uint216\"}],\"internalType\":\"struct AggregatedStakedPSYSV3.ExchangeRateSnapshot\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getExchangeRateSnapshotsCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMaxSlashablePercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"getPendingAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerAtBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint8\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerCurrent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"staker\",\"type\":\"address\"}],\"name\":\"getTotalRewardsBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"}],\"name\":\"getUserAssetData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ghoDebtToken\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"inPostSlashingPeriod\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"slashingAdmin\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"cooldownPauseAdmin\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"claimHelper\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"permit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"returnFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"setCooldownSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newGHODebtToken\",\"type\":\"address\"}],\"name\":\"setGHODebtToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"percentage\",\"type\":\"uint256\"}],\"name\":\"setMaxSlashablePercentage\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"newPendingAdmin\",\"type\":\"address\"}],\"name\":\"setPendingAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"settleSlashing\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"slash\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"stakeWithPermit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"stakerRewardsToClaim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"stakersCooldowns\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"timestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"amount\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"totalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/AggregatedStakedPSYSV3.sol\":\"AggregatedStakedPSYSV3\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/interfaces/AggregatedStakedPSYSV3.sol\":{\"keccak256\":\"0xdb1f5f3726e9f9629b6af27968e2559f39e4402292231d4b36950685f395e4fb\",\"urls\":[\"bzz-raw://16477c802a46a2b53a68bceebdbb6fff4a246a802e00a659eb41bd9f291768c5\",\"dweb:/ipfs/Qmd6RaALUKkfrSYLgTY6MBn3Mts2vSjz6t95dEm5qwBWUz\"]}},\"version\":1}"}},"contracts/interfaces/AggregatorInterface.sol":{"AggregatorInterface":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"int256","name":"current","type":"int256"},{"indexed":true,"internalType":"uint256","name":"roundId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"updatedAt","type":"uint256"}],"name":"AnswerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"roundId","type":"uint256"},{"indexed":true,"internalType":"address","name":"startedBy","type":"address"},{"indexed":false,"internalType":"uint256","name":"startedAt","type":"uint256"}],"name":"NewRound","type":"event"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"}],"name":"getAnswer","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"roundId","type":"uint256"}],"name":"getTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latestAnswer","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latestRound","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latestTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getAnswer(uint256)":"b5ab58dc","getTimestamp(uint256)":"b633620c","latestAnswer()":"50d25bcd","latestRound()":"668a0f02","latestTimestamp()":"8205bf6a"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"int256\",\"name\":\"current\",\"type\":\"int256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"roundId\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"updatedAt\",\"type\":\"uint256\"}],\"name\":\"AnswerUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"roundId\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"startedBy\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"startedAt\",\"type\":\"uint256\"}],\"name\":\"NewRound\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"roundId\",\"type\":\"uint256\"}],\"name\":\"getAnswer\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"roundId\",\"type\":\"uint256\"}],\"name\":\"getTimestamp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"latestAnswer\",\"outputs\":[{\"internalType\":\"int256\",\"name\":\"\",\"type\":\"int256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"latestRound\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"latestTimestamp\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/AggregatorInterface.sol\":\"AggregatorInterface\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/interfaces/AggregatorInterface.sol\":{\"keccak256\":\"0xbe3ed5aeefac5fc22746c676e9a5ee53cba3edd3eda52676f5271ce2afe21fb0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e4eb5b23f0a01ca93981e09ec78f2b6a9eb1c19deaa1f7662f22bcbca2835674\",\"dweb:/ipfs/QmTx5SvwqaztJw7qES8xNN1n5FYUttj82tjAserCcPugXg\"]}},\"version\":1}"}},"contracts/interfaces/IERC20.sol":{"IERC20":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"Returns the remaining number of tokens that `spender` will be allowed to spend on behalf of `owner` through {transferFrom}. This is zero by default. This value changes when {approve} or {transferFrom} are called.\"},\"approve(address,uint256)\":{\"details\":\"Sets `amount` as the allowance of `spender` over the caller's tokens. Returns a boolean value indicating whether the operation succeeded. IMPORTANT: Beware that changing an allowance with this method brings the risk that someone may use both the old and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` using the allowance mechanism. `amount` is then deducted from the caller's allowance. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xf60c3588615e47906292265ebdc539f36e624cc166a7e338972e8f7479b3c58e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d61baa7db1a5ec4126d6ab038d6975151bcb173437e51d4d141325fe99f4630c\",\"dweb:/ipfs/QmZ8mYs5xSjd3vNYZWjjBREpob2T84yu5kaHiFFXuVw1jj\"]}},\"version\":1}"}},"contracts/interfaces/IStakedTokenDataProvider.sol":{"IStakedTokenDataProvider":{"abi":[{"inputs":[],"name":"ETH_USD_PRICE_FEED","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PSYS_USD_PRICE_FEED","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKED_PSYS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllStakedTokenData","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"stkPSYSData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"stkBptData","type":"tuple"},{"internalType":"uint256","name":"ethPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getAllStakedTokenUserData","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"stkPSYSData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"stakedTokenRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"rewardsToClaim","type":"uint256"},{"internalType":"uint40","name":"cooldownTimestamp","type":"uint40"},{"internalType":"uint216","name":"cooldownAmount","type":"uint216"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenUserData","name":"stkPSYSUserData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"stkBptData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"stakedTokenRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"rewardsToClaim","type":"uint256"},{"internalType":"uint40","name":"cooldownTimestamp","type":"uint40"},{"internalType":"uint216","name":"cooldownAmount","type":"uint216"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenUserData","name":"stkBptUserData","type":"tuple"},{"internalType":"uint256","name":"ethPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getstkPSYSUserData","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"stkPSYSData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"stakedTokenRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"rewardsToClaim","type":"uint256"},{"internalType":"uint40","name":"cooldownTimestamp","type":"uint40"},{"internalType":"uint216","name":"cooldownAmount","type":"uint216"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenUserData","name":"stkPSYSUserData","type":"tuple"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"ETH_USD_PRICE_FEED()":"b0f0abe9","PSYS_USD_PRICE_FEED()":"a54ae44c","STAKED_PSYS()":"e0fdf79f","getAllStakedTokenData()":"b7d1a98d","getAllStakedTokenUserData(address)":"cca44f0a","getstkPSYSUserData(address)":"e33db4e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ETH_USD_PRICE_FEED\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PSYS_USD_PRICE_FEED\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"STAKED_PSYS\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAllStakedTokenData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"stkPSYSData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"stkBptData\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"ethPrice\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getAllStakedTokenUserData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"stkPSYSData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"underlyingTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsToClaim\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"cooldownTimestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"cooldownAmount\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenUserData\",\"name\":\"stkPSYSUserData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"stkBptData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"underlyingTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsToClaim\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"cooldownTimestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"cooldownAmount\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenUserData\",\"name\":\"stkBptUserData\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"ethPrice\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getstkPSYSUserData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"stkPSYSData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"underlyingTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsToClaim\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"cooldownTimestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"cooldownAmount\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenUserData\",\"name\":\"stkPSYSUserData\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/interfaces/IStakedTokenDataProvider.sol\":\"IStakedTokenDataProvider\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/interfaces/IStakedTokenDataProvider.sol\":{\"keccak256\":\"0x19c12752bdc8a668cc528f24774e5d16e64a7d7a282070c3e0813cf205f0d4f5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bc4cd2fa40bdb2bbe51149f4298d1ed09e9a48250c9d315a0f16b85e9892054b\",\"dweb:/ipfs/QmVeQWDSPNDRBhmddGrr6DmZCpdUVjfuWhC3qBHwDuP42V\"]}},\"version\":1}"}},"contracts/misc/StakedTokenDataProvider.sol":{"StakedTokenDataProvider":{"abi":[{"inputs":[{"internalType":"address","name":"stkPsys","type":"address"},{"internalType":"address","name":"ethUsdPriceFeed","type":"address"},{"internalType":"address","name":"psysUsdPriceFeed","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ETH_USD_PRICE_FEED","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PSYS_USD_PRICE_FEED","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKED_PSYS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllStakedTokenData","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"stkPSYSData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"","type":"tuple"},{"internalType":"uint256","name":"ethPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getAllStakedTokenUserData","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"stkPSYSData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"stakedTokenRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"rewardsToClaim","type":"uint256"},{"internalType":"uint40","name":"cooldownTimestamp","type":"uint40"},{"internalType":"uint216","name":"cooldownAmount","type":"uint216"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenUserData","name":"stkPSYSUserData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"stakedTokenRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"rewardsToClaim","type":"uint256"},{"internalType":"uint40","name":"cooldownTimestamp","type":"uint40"},{"internalType":"uint216","name":"cooldownAmount","type":"uint216"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenUserData","name":"","type":"tuple"},{"internalType":"uint256","name":"ethPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"stakedAsset","type":"address"},{"internalType":"address","name":"oracle","type":"address"}],"name":"getStakedAssetData","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"stakedAssets","type":"address[]"},{"internalType":"address[]","name":"oracles","type":"address[]"}],"name":"getStakedAssetDataBatch","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData[]","name":"","type":"tuple[]"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"stakedAsset","type":"address"},{"internalType":"address","name":"oracle","type":"address"},{"internalType":"address","name":"user","type":"address"}],"name":"getStakedUserData","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"stakedTokenRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"rewardsToClaim","type":"uint256"},{"internalType":"uint40","name":"cooldownTimestamp","type":"uint40"},{"internalType":"uint216","name":"cooldownAmount","type":"uint216"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenUserData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"stakedAssets","type":"address[]"},{"internalType":"address[]","name":"oracles","type":"address[]"},{"internalType":"address","name":"user","type":"address"}],"name":"getStakedUserDataBatch","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData[]","name":"","type":"tuple[]"},{"components":[{"internalType":"uint256","name":"stakedTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"stakedTokenRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"rewardsToClaim","type":"uint256"},{"internalType":"uint40","name":"cooldownTimestamp","type":"uint40"},{"internalType":"uint216","name":"cooldownAmount","type":"uint216"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenUserData[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getstkPSYSUserData","outputs":[{"components":[{"internalType":"uint256","name":"stakedTokenTotalSupply","type":"uint256"},{"internalType":"uint256","name":"stakedTokenTotalRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"stakeCooldownSeconds","type":"uint256"},{"internalType":"uint256","name":"stakeUnstakeWindow","type":"uint256"},{"internalType":"uint256","name":"stakedTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"rewardTokenPriceEth","type":"uint256"},{"internalType":"uint256","name":"distributionPerSecond","type":"uint256"},{"internalType":"uint256","name":"distributionEnd","type":"uint256"},{"internalType":"uint256","name":"stakeApy","type":"uint256"},{"internalType":"uint256","name":"currentExchangeRate","type":"uint256"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenData","name":"stkPSYSData","type":"tuple"},{"components":[{"internalType":"uint256","name":"stakedTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenUserBalance","type":"uint256"},{"internalType":"uint256","name":"stakedTokenRedeemableAmount","type":"uint256"},{"internalType":"uint256","name":"rewardsToClaim","type":"uint256"},{"internalType":"uint40","name":"cooldownTimestamp","type":"uint40"},{"internalType":"uint216","name":"cooldownAmount","type":"uint216"}],"internalType":"struct IStakedTokenDataProvider.StakedTokenUserData","name":"stkPSYSUserData","type":"tuple"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_1008":{"entryPoint":null,"id":1008,"parameterSlots":3,"returnSlots":0},"abi_decode_address_fromMemory":{"entryPoint":76,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_addresst_addresst_address_fromMemory":{"entryPoint":104,"id":null,"parameterSlots":2,"returnSlots":3}},"generatedSources":[{"ast":{"nativeSrc":"0:576:5","nodeType":"YulBlock","src":"0:576:5","statements":[{"nativeSrc":"6:3:5","nodeType":"YulBlock","src":"6:3:5","statements":[]},{"body":{"nativeSrc":"74:117:5","nodeType":"YulBlock","src":"74:117:5","statements":[{"nativeSrc":"84:22:5","nodeType":"YulAssignment","src":"84:22:5","value":{"arguments":[{"name":"offset","nativeSrc":"99:6:5","nodeType":"YulIdentifier","src":"99:6:5"}],"functionName":{"name":"mload","nativeSrc":"93:5:5","nodeType":"YulIdentifier","src":"93:5:5"},"nativeSrc":"93:13:5","nodeType":"YulFunctionCall","src":"93:13:5"},"variableNames":[{"name":"value","nativeSrc":"84:5:5","nodeType":"YulIdentifier","src":"84:5:5"}]},{"body":{"nativeSrc":"169:16:5","nodeType":"YulBlock","src":"169:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"178:1:5","nodeType":"YulLiteral","src":"178:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"181:1:5","nodeType":"YulLiteral","src":"181:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"171:6:5","nodeType":"YulIdentifier","src":"171:6:5"},"nativeSrc":"171:12:5","nodeType":"YulFunctionCall","src":"171:12:5"},"nativeSrc":"171:12:5","nodeType":"YulExpressionStatement","src":"171:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"128:5:5","nodeType":"YulIdentifier","src":"128:5:5"},{"arguments":[{"name":"value","nativeSrc":"139:5:5","nodeType":"YulIdentifier","src":"139:5:5"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"154:3:5","nodeType":"YulLiteral","src":"154:3:5","type":"","value":"160"},{"kind":"number","nativeSrc":"159:1:5","nodeType":"YulLiteral","src":"159:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"150:3:5","nodeType":"YulIdentifier","src":"150:3:5"},"nativeSrc":"150:11:5","nodeType":"YulFunctionCall","src":"150:11:5"},{"kind":"number","nativeSrc":"163:1:5","nodeType":"YulLiteral","src":"163:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"146:3:5","nodeType":"YulIdentifier","src":"146:3:5"},"nativeSrc":"146:19:5","nodeType":"YulFunctionCall","src":"146:19:5"}],"functionName":{"name":"and","nativeSrc":"135:3:5","nodeType":"YulIdentifier","src":"135:3:5"},"nativeSrc":"135:31:5","nodeType":"YulFunctionCall","src":"135:31:5"}],"functionName":{"name":"eq","nativeSrc":"125:2:5","nodeType":"YulIdentifier","src":"125:2:5"},"nativeSrc":"125:42:5","nodeType":"YulFunctionCall","src":"125:42:5"}],"functionName":{"name":"iszero","nativeSrc":"118:6:5","nodeType":"YulIdentifier","src":"118:6:5"},"nativeSrc":"118:50:5","nodeType":"YulFunctionCall","src":"118:50:5"},"nativeSrc":"115:70:5","nodeType":"YulIf","src":"115:70:5"}]},"name":"abi_decode_address_fromMemory","nativeSrc":"14:177:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"53:6:5","nodeType":"YulTypedName","src":"53:6:5","type":""}],"returnVariables":[{"name":"value","nativeSrc":"64:5:5","nodeType":"YulTypedName","src":"64:5:5","type":""}],"src":"14:177:5"},{"body":{"nativeSrc":"311:263:5","nodeType":"YulBlock","src":"311:263:5","statements":[{"body":{"nativeSrc":"357:16:5","nodeType":"YulBlock","src":"357:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"366:1:5","nodeType":"YulLiteral","src":"366:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"369:1:5","nodeType":"YulLiteral","src":"369:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"359:6:5","nodeType":"YulIdentifier","src":"359:6:5"},"nativeSrc":"359:12:5","nodeType":"YulFunctionCall","src":"359:12:5"},"nativeSrc":"359:12:5","nodeType":"YulExpressionStatement","src":"359:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"332:7:5","nodeType":"YulIdentifier","src":"332:7:5"},{"name":"headStart","nativeSrc":"341:9:5","nodeType":"YulIdentifier","src":"341:9:5"}],"functionName":{"name":"sub","nativeSrc":"328:3:5","nodeType":"YulIdentifier","src":"328:3:5"},"nativeSrc":"328:23:5","nodeType":"YulFunctionCall","src":"328:23:5"},{"kind":"number","nativeSrc":"353:2:5","nodeType":"YulLiteral","src":"353:2:5","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"324:3:5","nodeType":"YulIdentifier","src":"324:3:5"},"nativeSrc":"324:32:5","nodeType":"YulFunctionCall","src":"324:32:5"},"nativeSrc":"321:52:5","nodeType":"YulIf","src":"321:52:5"},{"nativeSrc":"382:50:5","nodeType":"YulAssignment","src":"382:50:5","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:5","nodeType":"YulIdentifier","src":"422:9:5"}],"functionName":{"name":"abi_decode_address_fromMemory","nativeSrc":"392:29:5","nodeType":"YulIdentifier","src":"392:29:5"},"nativeSrc":"392:40:5","nodeType":"YulFunctionCall","src":"392:40:5"},"variableNames":[{"name":"value0","nativeSrc":"382:6:5","nodeType":"YulIdentifier","src":"382:6:5"}]},{"nativeSrc":"441:59:5","nodeType":"YulAssignment","src":"441:59:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"485:9:5","nodeType":"YulIdentifier","src":"485:9:5"},{"kind":"number","nativeSrc":"496:2:5","nodeType":"YulLiteral","src":"496:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"481:3:5","nodeType":"YulIdentifier","src":"481:3:5"},"nativeSrc":"481:18:5","nodeType":"YulFunctionCall","src":"481:18:5"}],"functionName":{"name":"abi_decode_address_fromMemory","nativeSrc":"451:29:5","nodeType":"YulIdentifier","src":"451:29:5"},"nativeSrc":"451:49:5","nodeType":"YulFunctionCall","src":"451:49:5"},"variableNames":[{"name":"value1","nativeSrc":"441:6:5","nodeType":"YulIdentifier","src":"441:6:5"}]},{"nativeSrc":"509:59:5","nodeType":"YulAssignment","src":"509:59:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"553:9:5","nodeType":"YulIdentifier","src":"553:9:5"},{"kind":"number","nativeSrc":"564:2:5","nodeType":"YulLiteral","src":"564:2:5","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"549:3:5","nodeType":"YulIdentifier","src":"549:3:5"},"nativeSrc":"549:18:5","nodeType":"YulFunctionCall","src":"549:18:5"}],"functionName":{"name":"abi_decode_address_fromMemory","nativeSrc":"519:29:5","nodeType":"YulIdentifier","src":"519:29:5"},"nativeSrc":"519:49:5","nodeType":"YulFunctionCall","src":"519:49:5"},"variableNames":[{"name":"value2","nativeSrc":"509:6:5","nodeType":"YulIdentifier","src":"509:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_address_fromMemory","nativeSrc":"196:378:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"261:9:5","nodeType":"YulTypedName","src":"261:9:5","type":""},{"name":"dataEnd","nativeSrc":"272:7:5","nodeType":"YulTypedName","src":"272:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"284:6:5","nodeType":"YulTypedName","src":"284:6:5","type":""},{"name":"value1","nativeSrc":"292:6:5","nodeType":"YulTypedName","src":"292:6:5","type":""},{"name":"value2","nativeSrc":"300:6:5","nodeType":"YulTypedName","src":"300:6:5","type":""}],"src":"196:378:5"}]},"contents":"{\n    { }\n    function abi_decode_address_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_addresst_address_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address_fromMemory(headStart)\n        value1 := abi_decode_address_fromMemory(add(headStart, 32))\n        value2 := abi_decode_address_fromMemory(add(headStart, 64))\n    }\n}","id":5,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60e060405234801561001057600080fd5b5060405161177238038061177283398101604081905261002f91610068565b6001600160a01b0392831660c0529082166080521660a0526100ab565b80516001600160a01b038116811461006357600080fd5b919050565b60008060006060848603121561007d57600080fd5b6100868461004c565b92506100946020850161004c565b91506100a26040850161004c565b90509250925092565b60805160a05160c05161164561012d600039600081816101b4015281816105560152818161064d015281816106990152818161077d01526107c901526000818160f301526109e201526000818161013201528181610291015281816105770152818161059f0152818161066e015281816106c2015261079e01526116456000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c8063cca44f0a11610066578063cca44f0a1461016b578063deb660901461018f578063e0fdf79f146101af578063e33db4e2146101d6578063ee4291ce146101f757600080fd5b8063026dc682146100a3578063304fbe0d146100cd578063a54ae44c146100ee578063b0f0abe91461012d578063b7d1a98d14610154575b600080fd5b6100b66100b136600461107c565b61020a565b6040516100c49291906111a7565b60405180910390f35b6100e06100db3660046111e1565b6103a7565b6040516100c49291906112b1565b6101157f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100c4565b6101157f000000000000000000000000000000000000000000000000000000000000000081565b61015c61053f565b6040516100c493929190611316565b61017e610179366004611342565b610626565b6040516100c495949392919061135f565b6101a261019d3660046113a9565b61074d565b6040516100c491906113e2565b6101157f000000000000000000000000000000000000000000000000000000000000000081565b6101e96101e4366004611342565b610768565b6040516100c49291906113f1565b6101e961020536600461140e565b6107f5565b606060008483146102365760405162461bcd60e51b815260040161022d90611459565b60405180910390fd5b60008567ffffffffffffffff8111156102515761025161149a565b60405190808252806020026020018201604052801561028a57816020015b610277610f90565b81526020019060019003908161026f5790505b50905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031191906114b0565b905060005b8781101561039957610374898983818110610333576103336114c9565b90506020020160208101906103489190611342565b88888481811061035a5761035a6114c9565b905060200201602081019061036f9190611342565b610825565b838281518110610386576103866114c9565b6020908102919091010152600101610316565b509097909650945050505050565b6060808584146103c95760405162461bcd60e51b815260040161022d90611459565b60008667ffffffffffffffff8111156103e4576103e461149a565b60405190808252806020026020018201604052801561041d57816020015b61040a610f90565b8152602001906001900390816104025790505b50905060008767ffffffffffffffff81111561043b5761043b61149a565b60405190808252806020026020018201604052801561047457816020015b610461610fea565b8152602001906001900390816104595790505b50905060005b88811015610530576104be8a8a83818110610497576104976114c9565b90506020020160208101906104ac9190611342565b89898481811061035a5761035a6114c9565b8382815181106104d0576104d06114c9565b602002602001018190525061050b8a8a838181106104f0576104f06114c9565b90506020020160208101906105059190611342565b87610c6b565b82828151811061051d5761051d6114c9565b602090810291909101015260010161047a565b50909890975095505050505050565b610547610f90565b61054f610f90565b600061059b7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610825565b92507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061f91906114b0565b9050909192565b61062e610f90565b610636610fea565b61063e610f90565b610646610fea565b60006106927f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610825565b94506106be7f000000000000000000000000000000000000000000000000000000000000000087610c6b565b93507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561071e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074291906114b0565b905091939590929450565b610755610f90565b61075f8383610825565b90505b92915050565b610770610f90565b610778610fea565b6107c27f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610825565b91506107ee7f000000000000000000000000000000000000000000000000000000000000000084610c6b565b9050915091565b6107fd610f90565b610805610fea565b61080f8585610825565b6108198685610c6b565b91509150935093915050565b61082d610f90565b6000839050806001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610870573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089491906114b0565b80835260405163266d6a8360e11b815260048101919091526001600160a01b03821690634cdad50690602401602060405180830381865afa1580156108dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090191906114b0565b826020018181525050806001600160a01b031663616e0bf96040518163ffffffff1660e01b8152600401602060405180830381865afa158015610948573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096c91906114b0565b826040018181525050806001600160a01b031663359c4a966040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d791906114b0565b8260600181815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6291906114b0565b8260a0018181525050806001600160a01b031663919cd40f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acd91906114b0565b60e08301819052421015610b5b57604051631e23703160e31b81526001600160a01b0385811660048301526000919083169063f11b818890602401606060405180830381865afa158015610b25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4991906114fb565b50506001600160801b031660c0840152505b8160a00151826080018181525050806001600160a01b031663e6aa216c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ba7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcb9190611551565b6001600160d81b031682610120018181525050806001600160a01b031663f34d96da6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4091906114b0565b61014083015260c08201518251610120840151610c5e929190610f28565b6101008301525092915050565b610c73610fea565b6040516370a0823160e01b81526001600160a01b0383811660048301528491908216906370a0823190602401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce091906114b0565b826000018181525050806001600160a01b031663312f6b836040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4b919061156c565b6040516370a0823160e01b81526001600160a01b03858116600483015291909116906370a0823190602401602060405180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db791906114b0565b6020830152815160405163266d6a8360e11b815260048101919091526001600160a01b03821690634cdad50690602401602060405180830381865afa158015610e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2891906114b0565b604083810191909152516346df7f7160e11b81526001600160a01b038481166004830152821690638dbefee290602401602060405180830381865afa158015610e75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9991906114b0565b606083015260405163091030c360e01b81526001600160a01b03848116600483015282169063091030c3906024016040805180830381865afa158015610ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f079190611589565b6001600160d81b031660a084015264ffffffffff1660808301525092915050565b600082600003610f3a57506000610f89565b6000610f4a6301e13380866115c8565b90506000670de0b6b3a7640000610f6185846115c8565b610f6b91906115ed565b905084610f7a612710836115c8565b610f8491906115ed565b925050505b9392505050565b60405180610160016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060c0016040528060008152602001600081526020016000815260200160008152602001600064ffffffffff16815260200160006001600160d81b031681525090565b60008083601f84011261104257600080fd5b50813567ffffffffffffffff81111561105a57600080fd5b6020830191508360208260051b850101111561107557600080fd5b9250929050565b6000806000806040858703121561109257600080fd5b843567ffffffffffffffff8111156110a957600080fd5b6110b587828801611030565b909550935050602085013567ffffffffffffffff8111156110d557600080fd5b6110e187828801611030565b95989497509550505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e08301526101008101516101008301526101208101516101208301526101408101516101408301525050565b600081518084526020840193506020830160005b8281101561119d576111868683516110ed565b610160959095019460209190910190600101611173565b5093949350505050565b6040815260006111ba604083018561115f565b90508260208301529392505050565b6001600160a01b03811681146111de57600080fd5b50565b6000806000806000606086880312156111f957600080fd5b853567ffffffffffffffff81111561121057600080fd5b61121c88828901611030565b909650945050602086013567ffffffffffffffff81111561123c57600080fd5b61124888828901611030565b909450925050604086013561125c816111c9565b809150509295509295909350565b8051825260208082015190830152604080820151908301526060808201519083015260808082015164ffffffffff169083015260a0908101516001600160d81b0316910152565b6040815260006112c4604083018561115f565b828103602084015280845180835260208301915060208601925060005b8181101561130a576112f483855161126a565b6020939093019260c092909201916001016112e1565b50909695505050505050565b6102e0810161132582866110ed565b6113336101608301856110ed565b826102c0830152949350505050565b60006020828403121561135457600080fd5b8135610f89816111c9565b610460810161136e82886110ed565b61137c61016083018761126a565b61138a6102208301866110ed565b61139861038083018561126a565b826104408301529695505050505050565b600080604083850312156113bc57600080fd5b82356113c7816111c9565b915060208301356113d7816111c9565b809150509250929050565b610160810161076282846110ed565b610220810161140082856110ed565b610f8961016083018461126a565b60008060006060848603121561142357600080fd5b833561142e816111c9565b9250602084013561143e816111c9565b9150604084013561144e816111c9565b809150509250925092565b60208082526021908201527f417272617973206d757374206265206f66207468652073616d65206c656e67746040820152600d60fb1b606082015260800190565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156114c257600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b80516001600160801b03811681146114f657600080fd5b919050565b60008060006060848603121561151057600080fd5b611519846114df565b9250611527602085016114df565b6040949094015192959394509192915050565b80516001600160d81b03811681146114f657600080fd5b60006020828403121561156357600080fd5b61075f8261153a565b60006020828403121561157e57600080fd5b8151610f89816111c9565b6000806040838503121561159c57600080fd5b825164ffffffffff811681146115b157600080fd5b91506115bf6020840161153a565b90509250929050565b808202811582820484141761076257634e487b7160e01b600052601160045260246000fd5b60008261160a57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220bbebb1a91858ef7d908c90ed6bb1ac1d480885988ff4112ce8725d68cd43781864736f6c634300081b0033","opcodes":"PUSH1 0xE0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x1772 CODESIZE SUB DUP1 PUSH2 0x1772 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0x68 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND PUSH1 0xC0 MSTORE SWAP1 DUP3 AND PUSH1 0x80 MSTORE AND PUSH1 0xA0 MSTORE PUSH2 0xAB JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x63 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x7D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x86 DUP5 PUSH2 0x4C JUMP JUMPDEST SWAP3 POP PUSH2 0x94 PUSH1 0x20 DUP6 ADD PUSH2 0x4C JUMP JUMPDEST SWAP2 POP PUSH2 0xA2 PUSH1 0x40 DUP6 ADD PUSH2 0x4C JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH2 0x1645 PUSH2 0x12D PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x1B4 ADD MSTORE DUP2 DUP2 PUSH2 0x556 ADD MSTORE DUP2 DUP2 PUSH2 0x64D ADD MSTORE DUP2 DUP2 PUSH2 0x699 ADD MSTORE DUP2 DUP2 PUSH2 0x77D ADD MSTORE PUSH2 0x7C9 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH1 0xF3 ADD MSTORE PUSH2 0x9E2 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x132 ADD MSTORE DUP2 DUP2 PUSH2 0x291 ADD MSTORE DUP2 DUP2 PUSH2 0x577 ADD MSTORE DUP2 DUP2 PUSH2 0x59F ADD MSTORE DUP2 DUP2 PUSH2 0x66E ADD MSTORE DUP2 DUP2 PUSH2 0x6C2 ADD MSTORE PUSH2 0x79E ADD MSTORE PUSH2 0x1645 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x9E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xCCA44F0A GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xCCA44F0A EQ PUSH2 0x16B JUMPI DUP1 PUSH4 0xDEB66090 EQ PUSH2 0x18F JUMPI DUP1 PUSH4 0xE0FDF79F EQ PUSH2 0x1AF JUMPI DUP1 PUSH4 0xE33DB4E2 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xEE4291CE EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x26DC682 EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0x304FBE0D EQ PUSH2 0xCD JUMPI DUP1 PUSH4 0xA54AE44C EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0xB0F0ABE9 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0xB7D1A98D EQ PUSH2 0x154 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0xB1 CALLDATASIZE PUSH1 0x4 PUSH2 0x107C JUMP JUMPDEST PUSH2 0x20A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP3 SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE0 PUSH2 0xDB CALLDATASIZE PUSH1 0x4 PUSH2 0x11E1 JUMP JUMPDEST PUSH2 0x3A7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP3 SWAP2 SWAP1 PUSH2 0x12B1 JUMP JUMPDEST PUSH2 0x115 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC4 JUMP JUMPDEST PUSH2 0x115 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x53F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1316 JUMP JUMPDEST PUSH2 0x17E PUSH2 0x179 CALLDATASIZE PUSH1 0x4 PUSH2 0x1342 JUMP JUMPDEST PUSH2 0x626 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x135F JUMP JUMPDEST PUSH2 0x1A2 PUSH2 0x19D CALLDATASIZE PUSH1 0x4 PUSH2 0x13A9 JUMP JUMPDEST PUSH2 0x74D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP2 SWAP1 PUSH2 0x13E2 JUMP JUMPDEST PUSH2 0x115 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1342 JUMP JUMPDEST PUSH2 0x768 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F1 JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x140E JUMP JUMPDEST PUSH2 0x7F5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP5 DUP4 EQ PUSH2 0x236 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22D SWAP1 PUSH2 0x1459 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x251 JUMPI PUSH2 0x251 PUSH2 0x149A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x28A JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x277 PUSH2 0xF90 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x26F JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x50D25BCD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2ED JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x311 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x399 JUMPI PUSH2 0x374 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x333 JUMPI PUSH2 0x333 PUSH2 0x14C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x348 SWAP2 SWAP1 PUSH2 0x1342 JUMP JUMPDEST DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0x35A JUMPI PUSH2 0x35A PUSH2 0x14C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x36F SWAP2 SWAP1 PUSH2 0x1342 JUMP JUMPDEST PUSH2 0x825 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x386 JUMPI PUSH2 0x386 PUSH2 0x14C9 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x316 JUMP JUMPDEST POP SWAP1 SWAP8 SWAP1 SWAP7 POP SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 DUP6 DUP5 EQ PUSH2 0x3C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22D SWAP1 PUSH2 0x1459 JUMP JUMPDEST PUSH1 0x0 DUP7 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3E4 JUMPI PUSH2 0x3E4 PUSH2 0x149A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x41D JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x40A PUSH2 0xF90 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x402 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP8 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x43B JUMPI PUSH2 0x43B PUSH2 0x149A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x474 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x461 PUSH2 0xFEA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x459 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0x530 JUMPI PUSH2 0x4BE DUP11 DUP11 DUP4 DUP2 DUP2 LT PUSH2 0x497 JUMPI PUSH2 0x497 PUSH2 0x14C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x4AC SWAP2 SWAP1 PUSH2 0x1342 JUMP JUMPDEST DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x35A JUMPI PUSH2 0x35A PUSH2 0x14C9 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x4D0 JUMPI PUSH2 0x4D0 PUSH2 0x14C9 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x50B DUP11 DUP11 DUP4 DUP2 DUP2 LT PUSH2 0x4F0 JUMPI PUSH2 0x4F0 PUSH2 0x14C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x505 SWAP2 SWAP1 PUSH2 0x1342 JUMP JUMPDEST DUP8 PUSH2 0xC6B JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x51D JUMPI PUSH2 0x51D PUSH2 0x14C9 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x47A JUMP JUMPDEST POP SWAP1 SWAP9 SWAP1 SWAP8 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x547 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x54F PUSH2 0xF90 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x59B PUSH32 0x0 PUSH32 0x0 PUSH2 0x825 JUMP JUMPDEST SWAP3 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x50D25BCD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5FB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x61F SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST SWAP1 POP SWAP1 SWAP2 SWAP3 JUMP JUMPDEST PUSH2 0x62E PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x636 PUSH2 0xFEA JUMP JUMPDEST PUSH2 0x63E PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x646 PUSH2 0xFEA JUMP JUMPDEST PUSH1 0x0 PUSH2 0x692 PUSH32 0x0 PUSH32 0x0 PUSH2 0x825 JUMP JUMPDEST SWAP5 POP PUSH2 0x6BE PUSH32 0x0 DUP8 PUSH2 0xC6B JUMP JUMPDEST SWAP4 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x50D25BCD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x71E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x742 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP4 SWAP6 SWAP1 SWAP3 SWAP5 POP JUMP JUMPDEST PUSH2 0x755 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x75F DUP4 DUP4 PUSH2 0x825 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x770 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x778 PUSH2 0xFEA JUMP JUMPDEST PUSH2 0x7C2 PUSH32 0x0 PUSH32 0x0 PUSH2 0x825 JUMP JUMPDEST SWAP2 POP PUSH2 0x7EE PUSH32 0x0 DUP5 PUSH2 0xC6B JUMP JUMPDEST SWAP1 POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH2 0x7FD PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x805 PUSH2 0xFEA JUMP JUMPDEST PUSH2 0x80F DUP6 DUP6 PUSH2 0x825 JUMP JUMPDEST PUSH2 0x819 DUP7 DUP6 PUSH2 0xC6B JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x82D PUSH2 0xF90 JUMP JUMPDEST PUSH1 0x0 DUP4 SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x870 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x894 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP1 DUP4 MSTORE PUSH1 0x40 MLOAD PUSH4 0x266D6A83 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x4CDAD506 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8DD JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x901 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0x20 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x616E0BF9 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x948 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x96C SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0x40 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x359C4A96 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x9B3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9D7 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0x60 ADD DUP2 DUP2 MSTORE POP POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x50D25BCD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA3E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA62 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0xA0 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x919CD40F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xAA9 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xACD SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD DUP2 SWAP1 MSTORE TIMESTAMP LT ISZERO PUSH2 0xB5B JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E237031 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP4 AND SWAP1 PUSH4 0xF11B8188 SWAP1 PUSH1 0x24 ADD PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB25 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB49 SWAP2 SWAP1 PUSH2 0x14FB JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH1 0xC0 DUP5 ADD MSTORE POP JUMPDEST DUP2 PUSH1 0xA0 ADD MLOAD DUP3 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE6AA216C PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBA7 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xBCB SWAP2 SWAP1 PUSH2 0x1551 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP3 PUSH2 0x120 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xF34D96DA PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC1C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC40 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH2 0x140 DUP4 ADD MSTORE PUSH1 0xC0 DUP3 ADD MLOAD DUP3 MLOAD PUSH2 0x120 DUP5 ADD MLOAD PUSH2 0xC5E SWAP3 SWAP2 SWAP1 PUSH2 0xF28 JUMP JUMPDEST PUSH2 0x100 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC73 PUSH2 0xFEA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP5 SWAP2 SWAP1 DUP3 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xCBC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xCE0 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0x0 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x312F6B83 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD27 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD4B SWAP2 SWAP1 PUSH2 0x156C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD93 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xDB7 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE DUP2 MLOAD PUSH1 0x40 MLOAD PUSH4 0x266D6A83 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x4CDAD506 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE04 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE28 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH1 0x40 DUP4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE MLOAD PUSH4 0x46DF7F71 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x8DBEFEE2 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE75 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE99 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH4 0x91030C3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x91030C3 SWAP1 PUSH1 0x24 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xEE3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF07 SWAP2 SWAP1 PUSH2 0x1589 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH5 0xFFFFFFFFFF AND PUSH1 0x80 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 SUB PUSH2 0xF3A JUMPI POP PUSH1 0x0 PUSH2 0xF89 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF4A PUSH4 0x1E13380 DUP7 PUSH2 0x15C8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0xF61 DUP6 DUP5 PUSH2 0x15C8 JUMP JUMPDEST PUSH2 0xF6B SWAP2 SWAP1 PUSH2 0x15ED JUMP JUMPDEST SWAP1 POP DUP5 PUSH2 0xF7A PUSH2 0x2710 DUP4 PUSH2 0x15C8 JUMP JUMPDEST PUSH2 0xF84 SWAP2 SWAP1 PUSH2 0x15ED JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x160 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xC0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1042 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x105A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1075 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1092 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10B5 DUP8 DUP3 DUP9 ADD PUSH2 0x1030 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10E1 DUP8 DUP3 DUP9 ADD PUSH2 0x1030 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x140 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x119D JUMPI PUSH2 0x1186 DUP7 DUP4 MLOAD PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x160 SWAP6 SWAP1 SWAP6 ADD SWAP5 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1173 JUMP JUMPDEST POP SWAP4 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x11BA PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x115F JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x11F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1210 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x121C DUP9 DUP3 DUP10 ADD PUSH2 0x1030 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x123C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1248 DUP9 DUP3 DUP10 ADD PUSH2 0x1030 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x125C DUP2 PUSH2 0x11C9 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD MLOAD PUSH5 0xFFFFFFFFFF AND SWAP1 DUP4 ADD MSTORE PUSH1 0xA0 SWAP1 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x12C4 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x115F JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 POP PUSH1 0x20 DUP7 ADD SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x130A JUMPI PUSH2 0x12F4 DUP4 DUP6 MLOAD PUSH2 0x126A JUMP JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0xC0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x12E1 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2E0 DUP2 ADD PUSH2 0x1325 DUP3 DUP7 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x1333 PUSH2 0x160 DUP4 ADD DUP6 PUSH2 0x10ED JUMP JUMPDEST DUP3 PUSH2 0x2C0 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1354 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xF89 DUP2 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x460 DUP2 ADD PUSH2 0x136E DUP3 DUP9 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x137C PUSH2 0x160 DUP4 ADD DUP8 PUSH2 0x126A JUMP JUMPDEST PUSH2 0x138A PUSH2 0x220 DUP4 ADD DUP7 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x1398 PUSH2 0x380 DUP4 ADD DUP6 PUSH2 0x126A JUMP JUMPDEST DUP3 PUSH2 0x440 DUP4 ADD MSTORE SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x13C7 DUP2 PUSH2 0x11C9 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x13D7 DUP2 PUSH2 0x11C9 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x160 DUP2 ADD PUSH2 0x762 DUP3 DUP5 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x220 DUP2 ADD PUSH2 0x1400 DUP3 DUP6 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0xF89 PUSH2 0x160 DUP4 ADD DUP5 PUSH2 0x126A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1423 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x142E DUP2 PUSH2 0x11C9 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x143E DUP2 PUSH2 0x11C9 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x144E DUP2 PUSH2 0x11C9 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x21 SWAP1 DUP3 ADD MSTORE PUSH32 0x417272617973206D757374206265206F66207468652073616D65206C656E6774 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0xFB SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1510 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1519 DUP5 PUSH2 0x14DF JUMP JUMPDEST SWAP3 POP PUSH2 0x1527 PUSH1 0x20 DUP6 ADD PUSH2 0x14DF JUMP JUMPDEST PUSH1 0x40 SWAP5 SWAP1 SWAP5 ADD MLOAD SWAP3 SWAP6 SWAP4 SWAP5 POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1563 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x75F DUP3 PUSH2 0x153A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x157E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xF89 DUP2 PUSH2 0x11C9 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x159C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x15B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 POP PUSH2 0x15BF PUSH1 0x20 DUP5 ADD PUSH2 0x153A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x762 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x160A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBB 0xEB 0xB1 0xA9 XOR PC 0xEF PUSH30 0x908C90ED6BB1AC1D480885988FF4112CE8725D68CD43781864736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"509:6485:4:-:0;;;856:242;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;976:21:4;;;;;1007:36;;;;;1053:38;;;509:6485;;14:177:5;93:13;;-1:-1:-1;;;;;135:31:5;;125:42;;115:70;;181:1;178;171:12;115:70;14:177;;;:::o;196:378::-;284:6;292;300;353:2;341:9;332:7;328:23;324:32;321:52;;;369:1;366;359:12;321:52;392:40;422:9;392:40;:::i;:::-;382:50;;451:49;496:2;485:9;481:18;451:49;:::i;:::-;441:59;;519:49;564:2;553:9;549:18;519:49;:::i;:::-;509:59;;196:378;;;;;:::o;:::-;509:6485:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@ETH_USD_PRICE_FEED_974":{"entryPoint":null,"id":974,"parameterSlots":0,"returnSlots":0},"@PSYS_USD_PRICE_FEED_977":{"entryPoint":null,"id":977,"parameterSlots":0,"returnSlots":0},"@STAKED_PSYS_980":{"entryPoint":null,"id":980,"parameterSlots":0,"returnSlots":0},"@_calculateApy_1574":{"entryPoint":3880,"id":1574,"parameterSlots":3,"returnSlots":1},"@_getStakedTokenData_1463":{"entryPoint":2085,"id":1463,"parameterSlots":2,"returnSlots":1},"@_getStakedTokenUserData_1534":{"entryPoint":3179,"id":1534,"parameterSlots":2,"returnSlots":1},"@getAllStakedTokenData_1040":{"entryPoint":1343,"id":1040,"parameterSlots":0,"returnSlots":3},"@getAllStakedTokenUserData_1087":{"entryPoint":1574,"id":1087,"parameterSlots":1,"returnSlots":5},"@getStakedAssetDataBatch_1208":{"entryPoint":522,"id":1208,"parameterSlots":4,"returnSlots":2},"@getStakedAssetData_1103":{"entryPoint":1869,"id":1103,"parameterSlots":2,"returnSlots":1},"@getStakedUserDataBatch_1304":{"entryPoint":935,"id":1304,"parameterSlots":5,"returnSlots":2},"@getStakedUserData_1129":{"entryPoint":2037,"id":1129,"parameterSlots":3,"returnSlots":2},"@getstkPSYSUserData_1331":{"entryPoint":1896,"id":1331,"parameterSlots":1,"returnSlots":2},"abi_decode_array_address_dyn_calldata":{"entryPoint":4144,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_address":{"entryPoint":4930,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":5484,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":5033,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_address":{"entryPoint":5134,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_address_$dyn_calldata_ptr":{"entryPoint":4220,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_address_$dyn_calldata_ptrt_address":{"entryPoint":4577,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_int256_fromMemory":{"entryPoint":5296,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint128t_uint128t_uint256_fromMemory":{"entryPoint":5371,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint216_fromMemory":{"entryPoint":5457,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint40t_uint216_fromMemory":{"entryPoint":5513,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint128_fromMemory":{"entryPoint":5343,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint216_fromMemory":{"entryPoint":5434,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_array_struct_StakedTokenData_dyn":{"entryPoint":4447,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_struct_StakedTokenData":{"entryPoint":4333,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_struct_StakedTokenUserData":{"entryPoint":4714,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":4785,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_uint256__to_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_uint256__fromStack_reversed":{"entryPoint":4519,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_stringliteral_79fde935345d5b8f36c4987772c888795595b0c99a35b3b75cbe3d9f98338f9e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5209,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr__to_t_struct$_StakedTokenData_$888_memory_ptr__fromStack_reversed":{"entryPoint":5090,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_uint256__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_uint256__fromStack_reversed":{"entryPoint":4886,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr__fromStack_reversed":{"entryPoint":5105,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_uint256__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_uint256__fromStack_reversed":{"entryPoint":4959,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":5613,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":5576,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x32":{"entryPoint":5321,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":5274,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":4553,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:12036:5","nodeType":"YulBlock","src":"0:12036:5","statements":[{"nativeSrc":"6:3:5","nodeType":"YulBlock","src":"6:3:5","statements":[]},{"body":{"nativeSrc":"98:283:5","nodeType":"YulBlock","src":"98:283:5","statements":[{"body":{"nativeSrc":"147:16:5","nodeType":"YulBlock","src":"147:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"156:1:5","nodeType":"YulLiteral","src":"156:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"159:1:5","nodeType":"YulLiteral","src":"159:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"149:6:5","nodeType":"YulIdentifier","src":"149:6:5"},"nativeSrc":"149:12:5","nodeType":"YulFunctionCall","src":"149:12:5"},"nativeSrc":"149:12:5","nodeType":"YulExpressionStatement","src":"149:12:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"126:6:5","nodeType":"YulIdentifier","src":"126:6:5"},{"kind":"number","nativeSrc":"134:4:5","nodeType":"YulLiteral","src":"134:4:5","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"122:3:5","nodeType":"YulIdentifier","src":"122:3:5"},"nativeSrc":"122:17:5","nodeType":"YulFunctionCall","src":"122:17:5"},{"name":"end","nativeSrc":"141:3:5","nodeType":"YulIdentifier","src":"141:3:5"}],"functionName":{"name":"slt","nativeSrc":"118:3:5","nodeType":"YulIdentifier","src":"118:3:5"},"nativeSrc":"118:27:5","nodeType":"YulFunctionCall","src":"118:27:5"}],"functionName":{"name":"iszero","nativeSrc":"111:6:5","nodeType":"YulIdentifier","src":"111:6:5"},"nativeSrc":"111:35:5","nodeType":"YulFunctionCall","src":"111:35:5"},"nativeSrc":"108:55:5","nodeType":"YulIf","src":"108:55:5"},{"nativeSrc":"172:30:5","nodeType":"YulAssignment","src":"172:30:5","value":{"arguments":[{"name":"offset","nativeSrc":"195:6:5","nodeType":"YulIdentifier","src":"195:6:5"}],"functionName":{"name":"calldataload","nativeSrc":"182:12:5","nodeType":"YulIdentifier","src":"182:12:5"},"nativeSrc":"182:20:5","nodeType":"YulFunctionCall","src":"182:20:5"},"variableNames":[{"name":"length","nativeSrc":"172:6:5","nodeType":"YulIdentifier","src":"172:6:5"}]},{"body":{"nativeSrc":"245:16:5","nodeType":"YulBlock","src":"245:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"254:1:5","nodeType":"YulLiteral","src":"254:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"257:1:5","nodeType":"YulLiteral","src":"257:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"247:6:5","nodeType":"YulIdentifier","src":"247:6:5"},"nativeSrc":"247:12:5","nodeType":"YulFunctionCall","src":"247:12:5"},"nativeSrc":"247:12:5","nodeType":"YulExpressionStatement","src":"247:12:5"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"217:6:5","nodeType":"YulIdentifier","src":"217:6:5"},{"kind":"number","nativeSrc":"225:18:5","nodeType":"YulLiteral","src":"225:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"214:2:5","nodeType":"YulIdentifier","src":"214:2:5"},"nativeSrc":"214:30:5","nodeType":"YulFunctionCall","src":"214:30:5"},"nativeSrc":"211:50:5","nodeType":"YulIf","src":"211:50:5"},{"nativeSrc":"270:29:5","nodeType":"YulAssignment","src":"270:29:5","value":{"arguments":[{"name":"offset","nativeSrc":"286:6:5","nodeType":"YulIdentifier","src":"286:6:5"},{"kind":"number","nativeSrc":"294:4:5","nodeType":"YulLiteral","src":"294:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"282:3:5","nodeType":"YulIdentifier","src":"282:3:5"},"nativeSrc":"282:17:5","nodeType":"YulFunctionCall","src":"282:17:5"},"variableNames":[{"name":"arrayPos","nativeSrc":"270:8:5","nodeType":"YulIdentifier","src":"270:8:5"}]},{"body":{"nativeSrc":"359:16:5","nodeType":"YulBlock","src":"359:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"368:1:5","nodeType":"YulLiteral","src":"368:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"371:1:5","nodeType":"YulLiteral","src":"371:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"361:6:5","nodeType":"YulIdentifier","src":"361:6:5"},"nativeSrc":"361:12:5","nodeType":"YulFunctionCall","src":"361:12:5"},"nativeSrc":"361:12:5","nodeType":"YulExpressionStatement","src":"361:12:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"322:6:5","nodeType":"YulIdentifier","src":"322:6:5"},{"arguments":[{"kind":"number","nativeSrc":"334:1:5","nodeType":"YulLiteral","src":"334:1:5","type":"","value":"5"},{"name":"length","nativeSrc":"337:6:5","nodeType":"YulIdentifier","src":"337:6:5"}],"functionName":{"name":"shl","nativeSrc":"330:3:5","nodeType":"YulIdentifier","src":"330:3:5"},"nativeSrc":"330:14:5","nodeType":"YulFunctionCall","src":"330:14:5"}],"functionName":{"name":"add","nativeSrc":"318:3:5","nodeType":"YulIdentifier","src":"318:3:5"},"nativeSrc":"318:27:5","nodeType":"YulFunctionCall","src":"318:27:5"},{"kind":"number","nativeSrc":"347:4:5","nodeType":"YulLiteral","src":"347:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"314:3:5","nodeType":"YulIdentifier","src":"314:3:5"},"nativeSrc":"314:38:5","nodeType":"YulFunctionCall","src":"314:38:5"},{"name":"end","nativeSrc":"354:3:5","nodeType":"YulIdentifier","src":"354:3:5"}],"functionName":{"name":"gt","nativeSrc":"311:2:5","nodeType":"YulIdentifier","src":"311:2:5"},"nativeSrc":"311:47:5","nodeType":"YulFunctionCall","src":"311:47:5"},"nativeSrc":"308:67:5","nodeType":"YulIf","src":"308:67:5"}]},"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"14:367:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"61:6:5","nodeType":"YulTypedName","src":"61:6:5","type":""},{"name":"end","nativeSrc":"69:3:5","nodeType":"YulTypedName","src":"69:3:5","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"77:8:5","nodeType":"YulTypedName","src":"77:8:5","type":""},{"name":"length","nativeSrc":"87:6:5","nodeType":"YulTypedName","src":"87:6:5","type":""}],"src":"14:367:5"},{"body":{"nativeSrc":"543:611:5","nodeType":"YulBlock","src":"543:611:5","statements":[{"body":{"nativeSrc":"589:16:5","nodeType":"YulBlock","src":"589:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"598:1:5","nodeType":"YulLiteral","src":"598:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"601:1:5","nodeType":"YulLiteral","src":"601:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"591:6:5","nodeType":"YulIdentifier","src":"591:6:5"},"nativeSrc":"591:12:5","nodeType":"YulFunctionCall","src":"591:12:5"},"nativeSrc":"591:12:5","nodeType":"YulExpressionStatement","src":"591:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"564:7:5","nodeType":"YulIdentifier","src":"564:7:5"},{"name":"headStart","nativeSrc":"573:9:5","nodeType":"YulIdentifier","src":"573:9:5"}],"functionName":{"name":"sub","nativeSrc":"560:3:5","nodeType":"YulIdentifier","src":"560:3:5"},"nativeSrc":"560:23:5","nodeType":"YulFunctionCall","src":"560:23:5"},{"kind":"number","nativeSrc":"585:2:5","nodeType":"YulLiteral","src":"585:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"556:3:5","nodeType":"YulIdentifier","src":"556:3:5"},"nativeSrc":"556:32:5","nodeType":"YulFunctionCall","src":"556:32:5"},"nativeSrc":"553:52:5","nodeType":"YulIf","src":"553:52:5"},{"nativeSrc":"614:37:5","nodeType":"YulVariableDeclaration","src":"614:37:5","value":{"arguments":[{"name":"headStart","nativeSrc":"641:9:5","nodeType":"YulIdentifier","src":"641:9:5"}],"functionName":{"name":"calldataload","nativeSrc":"628:12:5","nodeType":"YulIdentifier","src":"628:12:5"},"nativeSrc":"628:23:5","nodeType":"YulFunctionCall","src":"628:23:5"},"variables":[{"name":"offset","nativeSrc":"618:6:5","nodeType":"YulTypedName","src":"618:6:5","type":""}]},{"body":{"nativeSrc":"694:16:5","nodeType":"YulBlock","src":"694:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"703:1:5","nodeType":"YulLiteral","src":"703:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"706:1:5","nodeType":"YulLiteral","src":"706:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"696:6:5","nodeType":"YulIdentifier","src":"696:6:5"},"nativeSrc":"696:12:5","nodeType":"YulFunctionCall","src":"696:12:5"},"nativeSrc":"696:12:5","nodeType":"YulExpressionStatement","src":"696:12:5"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"666:6:5","nodeType":"YulIdentifier","src":"666:6:5"},{"kind":"number","nativeSrc":"674:18:5","nodeType":"YulLiteral","src":"674:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"663:2:5","nodeType":"YulIdentifier","src":"663:2:5"},"nativeSrc":"663:30:5","nodeType":"YulFunctionCall","src":"663:30:5"},"nativeSrc":"660:50:5","nodeType":"YulIf","src":"660:50:5"},{"nativeSrc":"719:96:5","nodeType":"YulVariableDeclaration","src":"719:96:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"787:9:5","nodeType":"YulIdentifier","src":"787:9:5"},{"name":"offset","nativeSrc":"798:6:5","nodeType":"YulIdentifier","src":"798:6:5"}],"functionName":{"name":"add","nativeSrc":"783:3:5","nodeType":"YulIdentifier","src":"783:3:5"},"nativeSrc":"783:22:5","nodeType":"YulFunctionCall","src":"783:22:5"},{"name":"dataEnd","nativeSrc":"807:7:5","nodeType":"YulIdentifier","src":"807:7:5"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"745:37:5","nodeType":"YulIdentifier","src":"745:37:5"},"nativeSrc":"745:70:5","nodeType":"YulFunctionCall","src":"745:70:5"},"variables":[{"name":"value0_1","nativeSrc":"723:8:5","nodeType":"YulTypedName","src":"723:8:5","type":""},{"name":"value1_1","nativeSrc":"733:8:5","nodeType":"YulTypedName","src":"733:8:5","type":""}]},{"nativeSrc":"824:18:5","nodeType":"YulAssignment","src":"824:18:5","value":{"name":"value0_1","nativeSrc":"834:8:5","nodeType":"YulIdentifier","src":"834:8:5"},"variableNames":[{"name":"value0","nativeSrc":"824:6:5","nodeType":"YulIdentifier","src":"824:6:5"}]},{"nativeSrc":"851:18:5","nodeType":"YulAssignment","src":"851:18:5","value":{"name":"value1_1","nativeSrc":"861:8:5","nodeType":"YulIdentifier","src":"861:8:5"},"variableNames":[{"name":"value1","nativeSrc":"851:6:5","nodeType":"YulIdentifier","src":"851:6:5"}]},{"nativeSrc":"878:48:5","nodeType":"YulVariableDeclaration","src":"878:48:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"911:9:5","nodeType":"YulIdentifier","src":"911:9:5"},{"kind":"number","nativeSrc":"922:2:5","nodeType":"YulLiteral","src":"922:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"907:3:5","nodeType":"YulIdentifier","src":"907:3:5"},"nativeSrc":"907:18:5","nodeType":"YulFunctionCall","src":"907:18:5"}],"functionName":{"name":"calldataload","nativeSrc":"894:12:5","nodeType":"YulIdentifier","src":"894:12:5"},"nativeSrc":"894:32:5","nodeType":"YulFunctionCall","src":"894:32:5"},"variables":[{"name":"offset_1","nativeSrc":"882:8:5","nodeType":"YulTypedName","src":"882:8:5","type":""}]},{"body":{"nativeSrc":"971:16:5","nodeType":"YulBlock","src":"971:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"980:1:5","nodeType":"YulLiteral","src":"980:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"983:1:5","nodeType":"YulLiteral","src":"983:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"973:6:5","nodeType":"YulIdentifier","src":"973:6:5"},"nativeSrc":"973:12:5","nodeType":"YulFunctionCall","src":"973:12:5"},"nativeSrc":"973:12:5","nodeType":"YulExpressionStatement","src":"973:12:5"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"941:8:5","nodeType":"YulIdentifier","src":"941:8:5"},{"kind":"number","nativeSrc":"951:18:5","nodeType":"YulLiteral","src":"951:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"938:2:5","nodeType":"YulIdentifier","src":"938:2:5"},"nativeSrc":"938:32:5","nodeType":"YulFunctionCall","src":"938:32:5"},"nativeSrc":"935:52:5","nodeType":"YulIf","src":"935:52:5"},{"nativeSrc":"996:98:5","nodeType":"YulVariableDeclaration","src":"996:98:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1064:9:5","nodeType":"YulIdentifier","src":"1064:9:5"},{"name":"offset_1","nativeSrc":"1075:8:5","nodeType":"YulIdentifier","src":"1075:8:5"}],"functionName":{"name":"add","nativeSrc":"1060:3:5","nodeType":"YulIdentifier","src":"1060:3:5"},"nativeSrc":"1060:24:5","nodeType":"YulFunctionCall","src":"1060:24:5"},{"name":"dataEnd","nativeSrc":"1086:7:5","nodeType":"YulIdentifier","src":"1086:7:5"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"1022:37:5","nodeType":"YulIdentifier","src":"1022:37:5"},"nativeSrc":"1022:72:5","nodeType":"YulFunctionCall","src":"1022:72:5"},"variables":[{"name":"value2_1","nativeSrc":"1000:8:5","nodeType":"YulTypedName","src":"1000:8:5","type":""},{"name":"value3_1","nativeSrc":"1010:8:5","nodeType":"YulTypedName","src":"1010:8:5","type":""}]},{"nativeSrc":"1103:18:5","nodeType":"YulAssignment","src":"1103:18:5","value":{"name":"value2_1","nativeSrc":"1113:8:5","nodeType":"YulIdentifier","src":"1113:8:5"},"variableNames":[{"name":"value2","nativeSrc":"1103:6:5","nodeType":"YulIdentifier","src":"1103:6:5"}]},{"nativeSrc":"1130:18:5","nodeType":"YulAssignment","src":"1130:18:5","value":{"name":"value3_1","nativeSrc":"1140:8:5","nodeType":"YulIdentifier","src":"1140:8:5"},"variableNames":[{"name":"value3","nativeSrc":"1130:6:5","nodeType":"YulIdentifier","src":"1130:6:5"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_address_$dyn_calldata_ptr","nativeSrc":"386:768:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"485:9:5","nodeType":"YulTypedName","src":"485:9:5","type":""},{"name":"dataEnd","nativeSrc":"496:7:5","nodeType":"YulTypedName","src":"496:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"508:6:5","nodeType":"YulTypedName","src":"508:6:5","type":""},{"name":"value1","nativeSrc":"516:6:5","nodeType":"YulTypedName","src":"516:6:5","type":""},{"name":"value2","nativeSrc":"524:6:5","nodeType":"YulTypedName","src":"524:6:5","type":""},{"name":"value3","nativeSrc":"532:6:5","nodeType":"YulTypedName","src":"532:6:5","type":""}],"src":"386:768:5"},{"body":{"nativeSrc":"1218:613:5","nodeType":"YulBlock","src":"1218:613:5","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"1235:3:5","nodeType":"YulIdentifier","src":"1235:3:5"},{"arguments":[{"name":"value","nativeSrc":"1246:5:5","nodeType":"YulIdentifier","src":"1246:5:5"}],"functionName":{"name":"mload","nativeSrc":"1240:5:5","nodeType":"YulIdentifier","src":"1240:5:5"},"nativeSrc":"1240:12:5","nodeType":"YulFunctionCall","src":"1240:12:5"}],"functionName":{"name":"mstore","nativeSrc":"1228:6:5","nodeType":"YulIdentifier","src":"1228:6:5"},"nativeSrc":"1228:25:5","nodeType":"YulFunctionCall","src":"1228:25:5"},"nativeSrc":"1228:25:5","nodeType":"YulExpressionStatement","src":"1228:25:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1273:3:5","nodeType":"YulIdentifier","src":"1273:3:5"},{"kind":"number","nativeSrc":"1278:4:5","nodeType":"YulLiteral","src":"1278:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1269:3:5","nodeType":"YulIdentifier","src":"1269:3:5"},"nativeSrc":"1269:14:5","nodeType":"YulFunctionCall","src":"1269:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1295:5:5","nodeType":"YulIdentifier","src":"1295:5:5"},{"kind":"number","nativeSrc":"1302:4:5","nodeType":"YulLiteral","src":"1302:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1291:3:5","nodeType":"YulIdentifier","src":"1291:3:5"},"nativeSrc":"1291:16:5","nodeType":"YulFunctionCall","src":"1291:16:5"}],"functionName":{"name":"mload","nativeSrc":"1285:5:5","nodeType":"YulIdentifier","src":"1285:5:5"},"nativeSrc":"1285:23:5","nodeType":"YulFunctionCall","src":"1285:23:5"}],"functionName":{"name":"mstore","nativeSrc":"1262:6:5","nodeType":"YulIdentifier","src":"1262:6:5"},"nativeSrc":"1262:47:5","nodeType":"YulFunctionCall","src":"1262:47:5"},"nativeSrc":"1262:47:5","nodeType":"YulExpressionStatement","src":"1262:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1329:3:5","nodeType":"YulIdentifier","src":"1329:3:5"},{"kind":"number","nativeSrc":"1334:4:5","nodeType":"YulLiteral","src":"1334:4:5","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1325:3:5","nodeType":"YulIdentifier","src":"1325:3:5"},"nativeSrc":"1325:14:5","nodeType":"YulFunctionCall","src":"1325:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1351:5:5","nodeType":"YulIdentifier","src":"1351:5:5"},{"kind":"number","nativeSrc":"1358:4:5","nodeType":"YulLiteral","src":"1358:4:5","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"1347:3:5","nodeType":"YulIdentifier","src":"1347:3:5"},"nativeSrc":"1347:16:5","nodeType":"YulFunctionCall","src":"1347:16:5"}],"functionName":{"name":"mload","nativeSrc":"1341:5:5","nodeType":"YulIdentifier","src":"1341:5:5"},"nativeSrc":"1341:23:5","nodeType":"YulFunctionCall","src":"1341:23:5"}],"functionName":{"name":"mstore","nativeSrc":"1318:6:5","nodeType":"YulIdentifier","src":"1318:6:5"},"nativeSrc":"1318:47:5","nodeType":"YulFunctionCall","src":"1318:47:5"},"nativeSrc":"1318:47:5","nodeType":"YulExpressionStatement","src":"1318:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1385:3:5","nodeType":"YulIdentifier","src":"1385:3:5"},{"kind":"number","nativeSrc":"1390:4:5","nodeType":"YulLiteral","src":"1390:4:5","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1381:3:5","nodeType":"YulIdentifier","src":"1381:3:5"},"nativeSrc":"1381:14:5","nodeType":"YulFunctionCall","src":"1381:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1407:5:5","nodeType":"YulIdentifier","src":"1407:5:5"},{"kind":"number","nativeSrc":"1414:4:5","nodeType":"YulLiteral","src":"1414:4:5","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"1403:3:5","nodeType":"YulIdentifier","src":"1403:3:5"},"nativeSrc":"1403:16:5","nodeType":"YulFunctionCall","src":"1403:16:5"}],"functionName":{"name":"mload","nativeSrc":"1397:5:5","nodeType":"YulIdentifier","src":"1397:5:5"},"nativeSrc":"1397:23:5","nodeType":"YulFunctionCall","src":"1397:23:5"}],"functionName":{"name":"mstore","nativeSrc":"1374:6:5","nodeType":"YulIdentifier","src":"1374:6:5"},"nativeSrc":"1374:47:5","nodeType":"YulFunctionCall","src":"1374:47:5"},"nativeSrc":"1374:47:5","nodeType":"YulExpressionStatement","src":"1374:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1441:3:5","nodeType":"YulIdentifier","src":"1441:3:5"},{"kind":"number","nativeSrc":"1446:4:5","nodeType":"YulLiteral","src":"1446:4:5","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1437:3:5","nodeType":"YulIdentifier","src":"1437:3:5"},"nativeSrc":"1437:14:5","nodeType":"YulFunctionCall","src":"1437:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1463:5:5","nodeType":"YulIdentifier","src":"1463:5:5"},{"kind":"number","nativeSrc":"1470:4:5","nodeType":"YulLiteral","src":"1470:4:5","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"1459:3:5","nodeType":"YulIdentifier","src":"1459:3:5"},"nativeSrc":"1459:16:5","nodeType":"YulFunctionCall","src":"1459:16:5"}],"functionName":{"name":"mload","nativeSrc":"1453:5:5","nodeType":"YulIdentifier","src":"1453:5:5"},"nativeSrc":"1453:23:5","nodeType":"YulFunctionCall","src":"1453:23:5"}],"functionName":{"name":"mstore","nativeSrc":"1430:6:5","nodeType":"YulIdentifier","src":"1430:6:5"},"nativeSrc":"1430:47:5","nodeType":"YulFunctionCall","src":"1430:47:5"},"nativeSrc":"1430:47:5","nodeType":"YulExpressionStatement","src":"1430:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1497:3:5","nodeType":"YulIdentifier","src":"1497:3:5"},{"kind":"number","nativeSrc":"1502:4:5","nodeType":"YulLiteral","src":"1502:4:5","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1493:3:5","nodeType":"YulIdentifier","src":"1493:3:5"},"nativeSrc":"1493:14:5","nodeType":"YulFunctionCall","src":"1493:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1519:5:5","nodeType":"YulIdentifier","src":"1519:5:5"},{"kind":"number","nativeSrc":"1526:4:5","nodeType":"YulLiteral","src":"1526:4:5","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"1515:3:5","nodeType":"YulIdentifier","src":"1515:3:5"},"nativeSrc":"1515:16:5","nodeType":"YulFunctionCall","src":"1515:16:5"}],"functionName":{"name":"mload","nativeSrc":"1509:5:5","nodeType":"YulIdentifier","src":"1509:5:5"},"nativeSrc":"1509:23:5","nodeType":"YulFunctionCall","src":"1509:23:5"}],"functionName":{"name":"mstore","nativeSrc":"1486:6:5","nodeType":"YulIdentifier","src":"1486:6:5"},"nativeSrc":"1486:47:5","nodeType":"YulFunctionCall","src":"1486:47:5"},"nativeSrc":"1486:47:5","nodeType":"YulExpressionStatement","src":"1486:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1553:3:5","nodeType":"YulIdentifier","src":"1553:3:5"},{"kind":"number","nativeSrc":"1558:4:5","nodeType":"YulLiteral","src":"1558:4:5","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1549:3:5","nodeType":"YulIdentifier","src":"1549:3:5"},"nativeSrc":"1549:14:5","nodeType":"YulFunctionCall","src":"1549:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1575:5:5","nodeType":"YulIdentifier","src":"1575:5:5"},{"kind":"number","nativeSrc":"1582:4:5","nodeType":"YulLiteral","src":"1582:4:5","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"1571:3:5","nodeType":"YulIdentifier","src":"1571:3:5"},"nativeSrc":"1571:16:5","nodeType":"YulFunctionCall","src":"1571:16:5"}],"functionName":{"name":"mload","nativeSrc":"1565:5:5","nodeType":"YulIdentifier","src":"1565:5:5"},"nativeSrc":"1565:23:5","nodeType":"YulFunctionCall","src":"1565:23:5"}],"functionName":{"name":"mstore","nativeSrc":"1542:6:5","nodeType":"YulIdentifier","src":"1542:6:5"},"nativeSrc":"1542:47:5","nodeType":"YulFunctionCall","src":"1542:47:5"},"nativeSrc":"1542:47:5","nodeType":"YulExpressionStatement","src":"1542:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1609:3:5","nodeType":"YulIdentifier","src":"1609:3:5"},{"kind":"number","nativeSrc":"1614:4:5","nodeType":"YulLiteral","src":"1614:4:5","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1605:3:5","nodeType":"YulIdentifier","src":"1605:3:5"},"nativeSrc":"1605:14:5","nodeType":"YulFunctionCall","src":"1605:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1631:5:5","nodeType":"YulIdentifier","src":"1631:5:5"},{"kind":"number","nativeSrc":"1638:4:5","nodeType":"YulLiteral","src":"1638:4:5","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"1627:3:5","nodeType":"YulIdentifier","src":"1627:3:5"},"nativeSrc":"1627:16:5","nodeType":"YulFunctionCall","src":"1627:16:5"}],"functionName":{"name":"mload","nativeSrc":"1621:5:5","nodeType":"YulIdentifier","src":"1621:5:5"},"nativeSrc":"1621:23:5","nodeType":"YulFunctionCall","src":"1621:23:5"}],"functionName":{"name":"mstore","nativeSrc":"1598:6:5","nodeType":"YulIdentifier","src":"1598:6:5"},"nativeSrc":"1598:47:5","nodeType":"YulFunctionCall","src":"1598:47:5"},"nativeSrc":"1598:47:5","nodeType":"YulExpressionStatement","src":"1598:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1665:3:5","nodeType":"YulIdentifier","src":"1665:3:5"},{"kind":"number","nativeSrc":"1670:6:5","nodeType":"YulLiteral","src":"1670:6:5","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1661:3:5","nodeType":"YulIdentifier","src":"1661:3:5"},"nativeSrc":"1661:16:5","nodeType":"YulFunctionCall","src":"1661:16:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1689:5:5","nodeType":"YulIdentifier","src":"1689:5:5"},{"kind":"number","nativeSrc":"1696:6:5","nodeType":"YulLiteral","src":"1696:6:5","type":"","value":"0x0100"}],"functionName":{"name":"add","nativeSrc":"1685:3:5","nodeType":"YulIdentifier","src":"1685:3:5"},"nativeSrc":"1685:18:5","nodeType":"YulFunctionCall","src":"1685:18:5"}],"functionName":{"name":"mload","nativeSrc":"1679:5:5","nodeType":"YulIdentifier","src":"1679:5:5"},"nativeSrc":"1679:25:5","nodeType":"YulFunctionCall","src":"1679:25:5"}],"functionName":{"name":"mstore","nativeSrc":"1654:6:5","nodeType":"YulIdentifier","src":"1654:6:5"},"nativeSrc":"1654:51:5","nodeType":"YulFunctionCall","src":"1654:51:5"},"nativeSrc":"1654:51:5","nodeType":"YulExpressionStatement","src":"1654:51:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1725:3:5","nodeType":"YulIdentifier","src":"1725:3:5"},{"kind":"number","nativeSrc":"1730:6:5","nodeType":"YulLiteral","src":"1730:6:5","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1721:3:5","nodeType":"YulIdentifier","src":"1721:3:5"},"nativeSrc":"1721:16:5","nodeType":"YulFunctionCall","src":"1721:16:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1749:5:5","nodeType":"YulIdentifier","src":"1749:5:5"},{"kind":"number","nativeSrc":"1756:6:5","nodeType":"YulLiteral","src":"1756:6:5","type":"","value":"0x0120"}],"functionName":{"name":"add","nativeSrc":"1745:3:5","nodeType":"YulIdentifier","src":"1745:3:5"},"nativeSrc":"1745:18:5","nodeType":"YulFunctionCall","src":"1745:18:5"}],"functionName":{"name":"mload","nativeSrc":"1739:5:5","nodeType":"YulIdentifier","src":"1739:5:5"},"nativeSrc":"1739:25:5","nodeType":"YulFunctionCall","src":"1739:25:5"}],"functionName":{"name":"mstore","nativeSrc":"1714:6:5","nodeType":"YulIdentifier","src":"1714:6:5"},"nativeSrc":"1714:51:5","nodeType":"YulFunctionCall","src":"1714:51:5"},"nativeSrc":"1714:51:5","nodeType":"YulExpressionStatement","src":"1714:51:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1785:3:5","nodeType":"YulIdentifier","src":"1785:3:5"},{"kind":"number","nativeSrc":"1790:6:5","nodeType":"YulLiteral","src":"1790:6:5","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1781:3:5","nodeType":"YulIdentifier","src":"1781:3:5"},"nativeSrc":"1781:16:5","nodeType":"YulFunctionCall","src":"1781:16:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1809:5:5","nodeType":"YulIdentifier","src":"1809:5:5"},{"kind":"number","nativeSrc":"1816:6:5","nodeType":"YulLiteral","src":"1816:6:5","type":"","value":"0x0140"}],"functionName":{"name":"add","nativeSrc":"1805:3:5","nodeType":"YulIdentifier","src":"1805:3:5"},"nativeSrc":"1805:18:5","nodeType":"YulFunctionCall","src":"1805:18:5"}],"functionName":{"name":"mload","nativeSrc":"1799:5:5","nodeType":"YulIdentifier","src":"1799:5:5"},"nativeSrc":"1799:25:5","nodeType":"YulFunctionCall","src":"1799:25:5"}],"functionName":{"name":"mstore","nativeSrc":"1774:6:5","nodeType":"YulIdentifier","src":"1774:6:5"},"nativeSrc":"1774:51:5","nodeType":"YulFunctionCall","src":"1774:51:5"},"nativeSrc":"1774:51:5","nodeType":"YulExpressionStatement","src":"1774:51:5"}]},"name":"abi_encode_struct_StakedTokenData","nativeSrc":"1159:672:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1202:5:5","nodeType":"YulTypedName","src":"1202:5:5","type":""},{"name":"pos","nativeSrc":"1209:3:5","nodeType":"YulTypedName","src":"1209:3:5","type":""}],"src":"1159:672:5"},{"body":{"nativeSrc":"1912:388:5","nodeType":"YulBlock","src":"1912:388:5","statements":[{"nativeSrc":"1922:26:5","nodeType":"YulVariableDeclaration","src":"1922:26:5","value":{"arguments":[{"name":"value","nativeSrc":"1942:5:5","nodeType":"YulIdentifier","src":"1942:5:5"}],"functionName":{"name":"mload","nativeSrc":"1936:5:5","nodeType":"YulIdentifier","src":"1936:5:5"},"nativeSrc":"1936:12:5","nodeType":"YulFunctionCall","src":"1936:12:5"},"variables":[{"name":"length","nativeSrc":"1926:6:5","nodeType":"YulTypedName","src":"1926:6:5","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"1964:3:5","nodeType":"YulIdentifier","src":"1964:3:5"},{"name":"length","nativeSrc":"1969:6:5","nodeType":"YulIdentifier","src":"1969:6:5"}],"functionName":{"name":"mstore","nativeSrc":"1957:6:5","nodeType":"YulIdentifier","src":"1957:6:5"},"nativeSrc":"1957:19:5","nodeType":"YulFunctionCall","src":"1957:19:5"},"nativeSrc":"1957:19:5","nodeType":"YulExpressionStatement","src":"1957:19:5"},{"nativeSrc":"1985:21:5","nodeType":"YulAssignment","src":"1985:21:5","value":{"arguments":[{"name":"pos","nativeSrc":"1996:3:5","nodeType":"YulIdentifier","src":"1996:3:5"},{"kind":"number","nativeSrc":"2001:4:5","nodeType":"YulLiteral","src":"2001:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1992:3:5","nodeType":"YulIdentifier","src":"1992:3:5"},"nativeSrc":"1992:14:5","nodeType":"YulFunctionCall","src":"1992:14:5"},"variableNames":[{"name":"pos","nativeSrc":"1985:3:5","nodeType":"YulIdentifier","src":"1985:3:5"}]},{"nativeSrc":"2015:30:5","nodeType":"YulVariableDeclaration","src":"2015:30:5","value":{"arguments":[{"name":"value","nativeSrc":"2033:5:5","nodeType":"YulIdentifier","src":"2033:5:5"},{"kind":"number","nativeSrc":"2040:4:5","nodeType":"YulLiteral","src":"2040:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2029:3:5","nodeType":"YulIdentifier","src":"2029:3:5"},"nativeSrc":"2029:16:5","nodeType":"YulFunctionCall","src":"2029:16:5"},"variables":[{"name":"srcPtr","nativeSrc":"2019:6:5","nodeType":"YulTypedName","src":"2019:6:5","type":""}]},{"nativeSrc":"2054:10:5","nodeType":"YulVariableDeclaration","src":"2054:10:5","value":{"kind":"number","nativeSrc":"2063:1:5","nodeType":"YulLiteral","src":"2063:1:5","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"2058:1:5","nodeType":"YulTypedName","src":"2058:1:5","type":""}]},{"body":{"nativeSrc":"2122:153:5","nodeType":"YulBlock","src":"2122:153:5","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"2176:6:5","nodeType":"YulIdentifier","src":"2176:6:5"}],"functionName":{"name":"mload","nativeSrc":"2170:5:5","nodeType":"YulIdentifier","src":"2170:5:5"},"nativeSrc":"2170:13:5","nodeType":"YulFunctionCall","src":"2170:13:5"},{"name":"pos","nativeSrc":"2185:3:5","nodeType":"YulIdentifier","src":"2185:3:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenData","nativeSrc":"2136:33:5","nodeType":"YulIdentifier","src":"2136:33:5"},"nativeSrc":"2136:53:5","nodeType":"YulFunctionCall","src":"2136:53:5"},"nativeSrc":"2136:53:5","nodeType":"YulExpressionStatement","src":"2136:53:5"},{"nativeSrc":"2202:23:5","nodeType":"YulAssignment","src":"2202:23:5","value":{"arguments":[{"name":"pos","nativeSrc":"2213:3:5","nodeType":"YulIdentifier","src":"2213:3:5"},{"kind":"number","nativeSrc":"2218:6:5","nodeType":"YulLiteral","src":"2218:6:5","type":"","value":"0x0160"}],"functionName":{"name":"add","nativeSrc":"2209:3:5","nodeType":"YulIdentifier","src":"2209:3:5"},"nativeSrc":"2209:16:5","nodeType":"YulFunctionCall","src":"2209:16:5"},"variableNames":[{"name":"pos","nativeSrc":"2202:3:5","nodeType":"YulIdentifier","src":"2202:3:5"}]},{"nativeSrc":"2238:27:5","nodeType":"YulAssignment","src":"2238:27:5","value":{"arguments":[{"name":"srcPtr","nativeSrc":"2252:6:5","nodeType":"YulIdentifier","src":"2252:6:5"},{"kind":"number","nativeSrc":"2260:4:5","nodeType":"YulLiteral","src":"2260:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2248:3:5","nodeType":"YulIdentifier","src":"2248:3:5"},"nativeSrc":"2248:17:5","nodeType":"YulFunctionCall","src":"2248:17:5"},"variableNames":[{"name":"srcPtr","nativeSrc":"2238:6:5","nodeType":"YulIdentifier","src":"2238:6:5"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"2084:1:5","nodeType":"YulIdentifier","src":"2084:1:5"},{"name":"length","nativeSrc":"2087:6:5","nodeType":"YulIdentifier","src":"2087:6:5"}],"functionName":{"name":"lt","nativeSrc":"2081:2:5","nodeType":"YulIdentifier","src":"2081:2:5"},"nativeSrc":"2081:13:5","nodeType":"YulFunctionCall","src":"2081:13:5"},"nativeSrc":"2073:202:5","nodeType":"YulForLoop","post":{"nativeSrc":"2095:18:5","nodeType":"YulBlock","src":"2095:18:5","statements":[{"nativeSrc":"2097:14:5","nodeType":"YulAssignment","src":"2097:14:5","value":{"arguments":[{"name":"i","nativeSrc":"2106:1:5","nodeType":"YulIdentifier","src":"2106:1:5"},{"kind":"number","nativeSrc":"2109:1:5","nodeType":"YulLiteral","src":"2109:1:5","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2102:3:5","nodeType":"YulIdentifier","src":"2102:3:5"},"nativeSrc":"2102:9:5","nodeType":"YulFunctionCall","src":"2102:9:5"},"variableNames":[{"name":"i","nativeSrc":"2097:1:5","nodeType":"YulIdentifier","src":"2097:1:5"}]}]},"pre":{"nativeSrc":"2077:3:5","nodeType":"YulBlock","src":"2077:3:5","statements":[]},"src":"2073:202:5"},{"nativeSrc":"2284:10:5","nodeType":"YulAssignment","src":"2284:10:5","value":{"name":"pos","nativeSrc":"2291:3:5","nodeType":"YulIdentifier","src":"2291:3:5"},"variableNames":[{"name":"end","nativeSrc":"2284:3:5","nodeType":"YulIdentifier","src":"2284:3:5"}]}]},"name":"abi_encode_array_struct_StakedTokenData_dyn","nativeSrc":"1836:464:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1889:5:5","nodeType":"YulTypedName","src":"1889:5:5","type":""},{"name":"pos","nativeSrc":"1896:3:5","nodeType":"YulTypedName","src":"1896:3:5","type":""}],"returnVariables":[{"name":"end","nativeSrc":"1904:3:5","nodeType":"YulTypedName","src":"1904:3:5","type":""}],"src":"1836:464:5"},{"body":{"nativeSrc":"2548:168:5","nodeType":"YulBlock","src":"2548:168:5","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2565:9:5","nodeType":"YulIdentifier","src":"2565:9:5"},{"kind":"number","nativeSrc":"2576:2:5","nodeType":"YulLiteral","src":"2576:2:5","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"2558:6:5","nodeType":"YulIdentifier","src":"2558:6:5"},"nativeSrc":"2558:21:5","nodeType":"YulFunctionCall","src":"2558:21:5"},"nativeSrc":"2558:21:5","nodeType":"YulExpressionStatement","src":"2558:21:5"},{"nativeSrc":"2588:79:5","nodeType":"YulAssignment","src":"2588:79:5","value":{"arguments":[{"name":"value0","nativeSrc":"2640:6:5","nodeType":"YulIdentifier","src":"2640:6:5"},{"arguments":[{"name":"headStart","nativeSrc":"2652:9:5","nodeType":"YulIdentifier","src":"2652:9:5"},{"kind":"number","nativeSrc":"2663:2:5","nodeType":"YulLiteral","src":"2663:2:5","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2648:3:5","nodeType":"YulIdentifier","src":"2648:3:5"},"nativeSrc":"2648:18:5","nodeType":"YulFunctionCall","src":"2648:18:5"}],"functionName":{"name":"abi_encode_array_struct_StakedTokenData_dyn","nativeSrc":"2596:43:5","nodeType":"YulIdentifier","src":"2596:43:5"},"nativeSrc":"2596:71:5","nodeType":"YulFunctionCall","src":"2596:71:5"},"variableNames":[{"name":"tail","nativeSrc":"2588:4:5","nodeType":"YulIdentifier","src":"2588:4:5"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2687:9:5","nodeType":"YulIdentifier","src":"2687:9:5"},{"kind":"number","nativeSrc":"2698:2:5","nodeType":"YulLiteral","src":"2698:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2683:3:5","nodeType":"YulIdentifier","src":"2683:3:5"},"nativeSrc":"2683:18:5","nodeType":"YulFunctionCall","src":"2683:18:5"},{"name":"value1","nativeSrc":"2703:6:5","nodeType":"YulIdentifier","src":"2703:6:5"}],"functionName":{"name":"mstore","nativeSrc":"2676:6:5","nodeType":"YulIdentifier","src":"2676:6:5"},"nativeSrc":"2676:34:5","nodeType":"YulFunctionCall","src":"2676:34:5"},"nativeSrc":"2676:34:5","nodeType":"YulExpressionStatement","src":"2676:34:5"}]},"name":"abi_encode_tuple_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_uint256__to_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_uint256__fromStack_reversed","nativeSrc":"2305:411:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2509:9:5","nodeType":"YulTypedName","src":"2509:9:5","type":""},{"name":"value1","nativeSrc":"2520:6:5","nodeType":"YulTypedName","src":"2520:6:5","type":""},{"name":"value0","nativeSrc":"2528:6:5","nodeType":"YulTypedName","src":"2528:6:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2539:4:5","nodeType":"YulTypedName","src":"2539:4:5","type":""}],"src":"2305:411:5"},{"body":{"nativeSrc":"2766:86:5","nodeType":"YulBlock","src":"2766:86:5","statements":[{"body":{"nativeSrc":"2830:16:5","nodeType":"YulBlock","src":"2830:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2839:1:5","nodeType":"YulLiteral","src":"2839:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"2842:1:5","nodeType":"YulLiteral","src":"2842:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2832:6:5","nodeType":"YulIdentifier","src":"2832:6:5"},"nativeSrc":"2832:12:5","nodeType":"YulFunctionCall","src":"2832:12:5"},"nativeSrc":"2832:12:5","nodeType":"YulExpressionStatement","src":"2832:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2789:5:5","nodeType":"YulIdentifier","src":"2789:5:5"},{"arguments":[{"name":"value","nativeSrc":"2800:5:5","nodeType":"YulIdentifier","src":"2800:5:5"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2815:3:5","nodeType":"YulLiteral","src":"2815:3:5","type":"","value":"160"},{"kind":"number","nativeSrc":"2820:1:5","nodeType":"YulLiteral","src":"2820:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2811:3:5","nodeType":"YulIdentifier","src":"2811:3:5"},"nativeSrc":"2811:11:5","nodeType":"YulFunctionCall","src":"2811:11:5"},{"kind":"number","nativeSrc":"2824:1:5","nodeType":"YulLiteral","src":"2824:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2807:3:5","nodeType":"YulIdentifier","src":"2807:3:5"},"nativeSrc":"2807:19:5","nodeType":"YulFunctionCall","src":"2807:19:5"}],"functionName":{"name":"and","nativeSrc":"2796:3:5","nodeType":"YulIdentifier","src":"2796:3:5"},"nativeSrc":"2796:31:5","nodeType":"YulFunctionCall","src":"2796:31:5"}],"functionName":{"name":"eq","nativeSrc":"2786:2:5","nodeType":"YulIdentifier","src":"2786:2:5"},"nativeSrc":"2786:42:5","nodeType":"YulFunctionCall","src":"2786:42:5"}],"functionName":{"name":"iszero","nativeSrc":"2779:6:5","nodeType":"YulIdentifier","src":"2779:6:5"},"nativeSrc":"2779:50:5","nodeType":"YulFunctionCall","src":"2779:50:5"},"nativeSrc":"2776:70:5","nodeType":"YulIf","src":"2776:70:5"}]},"name":"validator_revert_address","nativeSrc":"2721:131:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2755:5:5","nodeType":"YulTypedName","src":"2755:5:5","type":""}],"src":"2721:131:5"},{"body":{"nativeSrc":"3031:729:5","nodeType":"YulBlock","src":"3031:729:5","statements":[{"body":{"nativeSrc":"3077:16:5","nodeType":"YulBlock","src":"3077:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3086:1:5","nodeType":"YulLiteral","src":"3086:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"3089:1:5","nodeType":"YulLiteral","src":"3089:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3079:6:5","nodeType":"YulIdentifier","src":"3079:6:5"},"nativeSrc":"3079:12:5","nodeType":"YulFunctionCall","src":"3079:12:5"},"nativeSrc":"3079:12:5","nodeType":"YulExpressionStatement","src":"3079:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3052:7:5","nodeType":"YulIdentifier","src":"3052:7:5"},{"name":"headStart","nativeSrc":"3061:9:5","nodeType":"YulIdentifier","src":"3061:9:5"}],"functionName":{"name":"sub","nativeSrc":"3048:3:5","nodeType":"YulIdentifier","src":"3048:3:5"},"nativeSrc":"3048:23:5","nodeType":"YulFunctionCall","src":"3048:23:5"},{"kind":"number","nativeSrc":"3073:2:5","nodeType":"YulLiteral","src":"3073:2:5","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"3044:3:5","nodeType":"YulIdentifier","src":"3044:3:5"},"nativeSrc":"3044:32:5","nodeType":"YulFunctionCall","src":"3044:32:5"},"nativeSrc":"3041:52:5","nodeType":"YulIf","src":"3041:52:5"},{"nativeSrc":"3102:37:5","nodeType":"YulVariableDeclaration","src":"3102:37:5","value":{"arguments":[{"name":"headStart","nativeSrc":"3129:9:5","nodeType":"YulIdentifier","src":"3129:9:5"}],"functionName":{"name":"calldataload","nativeSrc":"3116:12:5","nodeType":"YulIdentifier","src":"3116:12:5"},"nativeSrc":"3116:23:5","nodeType":"YulFunctionCall","src":"3116:23:5"},"variables":[{"name":"offset","nativeSrc":"3106:6:5","nodeType":"YulTypedName","src":"3106:6:5","type":""}]},{"body":{"nativeSrc":"3182:16:5","nodeType":"YulBlock","src":"3182:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3191:1:5","nodeType":"YulLiteral","src":"3191:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"3194:1:5","nodeType":"YulLiteral","src":"3194:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3184:6:5","nodeType":"YulIdentifier","src":"3184:6:5"},"nativeSrc":"3184:12:5","nodeType":"YulFunctionCall","src":"3184:12:5"},"nativeSrc":"3184:12:5","nodeType":"YulExpressionStatement","src":"3184:12:5"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"3154:6:5","nodeType":"YulIdentifier","src":"3154:6:5"},{"kind":"number","nativeSrc":"3162:18:5","nodeType":"YulLiteral","src":"3162:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3151:2:5","nodeType":"YulIdentifier","src":"3151:2:5"},"nativeSrc":"3151:30:5","nodeType":"YulFunctionCall","src":"3151:30:5"},"nativeSrc":"3148:50:5","nodeType":"YulIf","src":"3148:50:5"},{"nativeSrc":"3207:96:5","nodeType":"YulVariableDeclaration","src":"3207:96:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3275:9:5","nodeType":"YulIdentifier","src":"3275:9:5"},{"name":"offset","nativeSrc":"3286:6:5","nodeType":"YulIdentifier","src":"3286:6:5"}],"functionName":{"name":"add","nativeSrc":"3271:3:5","nodeType":"YulIdentifier","src":"3271:3:5"},"nativeSrc":"3271:22:5","nodeType":"YulFunctionCall","src":"3271:22:5"},{"name":"dataEnd","nativeSrc":"3295:7:5","nodeType":"YulIdentifier","src":"3295:7:5"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3233:37:5","nodeType":"YulIdentifier","src":"3233:37:5"},"nativeSrc":"3233:70:5","nodeType":"YulFunctionCall","src":"3233:70:5"},"variables":[{"name":"value0_1","nativeSrc":"3211:8:5","nodeType":"YulTypedName","src":"3211:8:5","type":""},{"name":"value1_1","nativeSrc":"3221:8:5","nodeType":"YulTypedName","src":"3221:8:5","type":""}]},{"nativeSrc":"3312:18:5","nodeType":"YulAssignment","src":"3312:18:5","value":{"name":"value0_1","nativeSrc":"3322:8:5","nodeType":"YulIdentifier","src":"3322:8:5"},"variableNames":[{"name":"value0","nativeSrc":"3312:6:5","nodeType":"YulIdentifier","src":"3312:6:5"}]},{"nativeSrc":"3339:18:5","nodeType":"YulAssignment","src":"3339:18:5","value":{"name":"value1_1","nativeSrc":"3349:8:5","nodeType":"YulIdentifier","src":"3349:8:5"},"variableNames":[{"name":"value1","nativeSrc":"3339:6:5","nodeType":"YulIdentifier","src":"3339:6:5"}]},{"nativeSrc":"3366:48:5","nodeType":"YulVariableDeclaration","src":"3366:48:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3399:9:5","nodeType":"YulIdentifier","src":"3399:9:5"},{"kind":"number","nativeSrc":"3410:2:5","nodeType":"YulLiteral","src":"3410:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3395:3:5","nodeType":"YulIdentifier","src":"3395:3:5"},"nativeSrc":"3395:18:5","nodeType":"YulFunctionCall","src":"3395:18:5"}],"functionName":{"name":"calldataload","nativeSrc":"3382:12:5","nodeType":"YulIdentifier","src":"3382:12:5"},"nativeSrc":"3382:32:5","nodeType":"YulFunctionCall","src":"3382:32:5"},"variables":[{"name":"offset_1","nativeSrc":"3370:8:5","nodeType":"YulTypedName","src":"3370:8:5","type":""}]},{"body":{"nativeSrc":"3459:16:5","nodeType":"YulBlock","src":"3459:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3468:1:5","nodeType":"YulLiteral","src":"3468:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"3471:1:5","nodeType":"YulLiteral","src":"3471:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3461:6:5","nodeType":"YulIdentifier","src":"3461:6:5"},"nativeSrc":"3461:12:5","nodeType":"YulFunctionCall","src":"3461:12:5"},"nativeSrc":"3461:12:5","nodeType":"YulExpressionStatement","src":"3461:12:5"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"3429:8:5","nodeType":"YulIdentifier","src":"3429:8:5"},{"kind":"number","nativeSrc":"3439:18:5","nodeType":"YulLiteral","src":"3439:18:5","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3426:2:5","nodeType":"YulIdentifier","src":"3426:2:5"},"nativeSrc":"3426:32:5","nodeType":"YulFunctionCall","src":"3426:32:5"},"nativeSrc":"3423:52:5","nodeType":"YulIf","src":"3423:52:5"},{"nativeSrc":"3484:98:5","nodeType":"YulVariableDeclaration","src":"3484:98:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3552:9:5","nodeType":"YulIdentifier","src":"3552:9:5"},{"name":"offset_1","nativeSrc":"3563:8:5","nodeType":"YulIdentifier","src":"3563:8:5"}],"functionName":{"name":"add","nativeSrc":"3548:3:5","nodeType":"YulIdentifier","src":"3548:3:5"},"nativeSrc":"3548:24:5","nodeType":"YulFunctionCall","src":"3548:24:5"},{"name":"dataEnd","nativeSrc":"3574:7:5","nodeType":"YulIdentifier","src":"3574:7:5"}],"functionName":{"name":"abi_decode_array_address_dyn_calldata","nativeSrc":"3510:37:5","nodeType":"YulIdentifier","src":"3510:37:5"},"nativeSrc":"3510:72:5","nodeType":"YulFunctionCall","src":"3510:72:5"},"variables":[{"name":"value2_1","nativeSrc":"3488:8:5","nodeType":"YulTypedName","src":"3488:8:5","type":""},{"name":"value3_1","nativeSrc":"3498:8:5","nodeType":"YulTypedName","src":"3498:8:5","type":""}]},{"nativeSrc":"3591:18:5","nodeType":"YulAssignment","src":"3591:18:5","value":{"name":"value2_1","nativeSrc":"3601:8:5","nodeType":"YulIdentifier","src":"3601:8:5"},"variableNames":[{"name":"value2","nativeSrc":"3591:6:5","nodeType":"YulIdentifier","src":"3591:6:5"}]},{"nativeSrc":"3618:18:5","nodeType":"YulAssignment","src":"3618:18:5","value":{"name":"value3_1","nativeSrc":"3628:8:5","nodeType":"YulIdentifier","src":"3628:8:5"},"variableNames":[{"name":"value3","nativeSrc":"3618:6:5","nodeType":"YulIdentifier","src":"3618:6:5"}]},{"nativeSrc":"3645:45:5","nodeType":"YulVariableDeclaration","src":"3645:45:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3675:9:5","nodeType":"YulIdentifier","src":"3675:9:5"},{"kind":"number","nativeSrc":"3686:2:5","nodeType":"YulLiteral","src":"3686:2:5","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3671:3:5","nodeType":"YulIdentifier","src":"3671:3:5"},"nativeSrc":"3671:18:5","nodeType":"YulFunctionCall","src":"3671:18:5"}],"functionName":{"name":"calldataload","nativeSrc":"3658:12:5","nodeType":"YulIdentifier","src":"3658:12:5"},"nativeSrc":"3658:32:5","nodeType":"YulFunctionCall","src":"3658:32:5"},"variables":[{"name":"value","nativeSrc":"3649:5:5","nodeType":"YulTypedName","src":"3649:5:5","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3724:5:5","nodeType":"YulIdentifier","src":"3724:5:5"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3699:24:5","nodeType":"YulIdentifier","src":"3699:24:5"},"nativeSrc":"3699:31:5","nodeType":"YulFunctionCall","src":"3699:31:5"},"nativeSrc":"3699:31:5","nodeType":"YulExpressionStatement","src":"3699:31:5"},{"nativeSrc":"3739:15:5","nodeType":"YulAssignment","src":"3739:15:5","value":{"name":"value","nativeSrc":"3749:5:5","nodeType":"YulIdentifier","src":"3749:5:5"},"variableNames":[{"name":"value4","nativeSrc":"3739:6:5","nodeType":"YulIdentifier","src":"3739:6:5"}]}]},"name":"abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_address_$dyn_calldata_ptrt_address","nativeSrc":"2857:903:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2965:9:5","nodeType":"YulTypedName","src":"2965:9:5","type":""},{"name":"dataEnd","nativeSrc":"2976:7:5","nodeType":"YulTypedName","src":"2976:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2988:6:5","nodeType":"YulTypedName","src":"2988:6:5","type":""},{"name":"value1","nativeSrc":"2996:6:5","nodeType":"YulTypedName","src":"2996:6:5","type":""},{"name":"value2","nativeSrc":"3004:6:5","nodeType":"YulTypedName","src":"3004:6:5","type":""},{"name":"value3","nativeSrc":"3012:6:5","nodeType":"YulTypedName","src":"3012:6:5","type":""},{"name":"value4","nativeSrc":"3020:6:5","nodeType":"YulTypedName","src":"3020:6:5","type":""}],"src":"2857:903:5"},{"body":{"nativeSrc":"3828:366:5","nodeType":"YulBlock","src":"3828:366:5","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"3845:3:5","nodeType":"YulIdentifier","src":"3845:3:5"},{"arguments":[{"name":"value","nativeSrc":"3856:5:5","nodeType":"YulIdentifier","src":"3856:5:5"}],"functionName":{"name":"mload","nativeSrc":"3850:5:5","nodeType":"YulIdentifier","src":"3850:5:5"},"nativeSrc":"3850:12:5","nodeType":"YulFunctionCall","src":"3850:12:5"}],"functionName":{"name":"mstore","nativeSrc":"3838:6:5","nodeType":"YulIdentifier","src":"3838:6:5"},"nativeSrc":"3838:25:5","nodeType":"YulFunctionCall","src":"3838:25:5"},"nativeSrc":"3838:25:5","nodeType":"YulExpressionStatement","src":"3838:25:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"3883:3:5","nodeType":"YulIdentifier","src":"3883:3:5"},{"kind":"number","nativeSrc":"3888:4:5","nodeType":"YulLiteral","src":"3888:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3879:3:5","nodeType":"YulIdentifier","src":"3879:3:5"},"nativeSrc":"3879:14:5","nodeType":"YulFunctionCall","src":"3879:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3905:5:5","nodeType":"YulIdentifier","src":"3905:5:5"},{"kind":"number","nativeSrc":"3912:4:5","nodeType":"YulLiteral","src":"3912:4:5","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3901:3:5","nodeType":"YulIdentifier","src":"3901:3:5"},"nativeSrc":"3901:16:5","nodeType":"YulFunctionCall","src":"3901:16:5"}],"functionName":{"name":"mload","nativeSrc":"3895:5:5","nodeType":"YulIdentifier","src":"3895:5:5"},"nativeSrc":"3895:23:5","nodeType":"YulFunctionCall","src":"3895:23:5"}],"functionName":{"name":"mstore","nativeSrc":"3872:6:5","nodeType":"YulIdentifier","src":"3872:6:5"},"nativeSrc":"3872:47:5","nodeType":"YulFunctionCall","src":"3872:47:5"},"nativeSrc":"3872:47:5","nodeType":"YulExpressionStatement","src":"3872:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"3939:3:5","nodeType":"YulIdentifier","src":"3939:3:5"},{"kind":"number","nativeSrc":"3944:4:5","nodeType":"YulLiteral","src":"3944:4:5","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"3935:3:5","nodeType":"YulIdentifier","src":"3935:3:5"},"nativeSrc":"3935:14:5","nodeType":"YulFunctionCall","src":"3935:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"3961:5:5","nodeType":"YulIdentifier","src":"3961:5:5"},{"kind":"number","nativeSrc":"3968:4:5","nodeType":"YulLiteral","src":"3968:4:5","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"3957:3:5","nodeType":"YulIdentifier","src":"3957:3:5"},"nativeSrc":"3957:16:5","nodeType":"YulFunctionCall","src":"3957:16:5"}],"functionName":{"name":"mload","nativeSrc":"3951:5:5","nodeType":"YulIdentifier","src":"3951:5:5"},"nativeSrc":"3951:23:5","nodeType":"YulFunctionCall","src":"3951:23:5"}],"functionName":{"name":"mstore","nativeSrc":"3928:6:5","nodeType":"YulIdentifier","src":"3928:6:5"},"nativeSrc":"3928:47:5","nodeType":"YulFunctionCall","src":"3928:47:5"},"nativeSrc":"3928:47:5","nodeType":"YulExpressionStatement","src":"3928:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"3995:3:5","nodeType":"YulIdentifier","src":"3995:3:5"},{"kind":"number","nativeSrc":"4000:4:5","nodeType":"YulLiteral","src":"4000:4:5","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"3991:3:5","nodeType":"YulIdentifier","src":"3991:3:5"},"nativeSrc":"3991:14:5","nodeType":"YulFunctionCall","src":"3991:14:5"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4017:5:5","nodeType":"YulIdentifier","src":"4017:5:5"},{"kind":"number","nativeSrc":"4024:4:5","nodeType":"YulLiteral","src":"4024:4:5","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"4013:3:5","nodeType":"YulIdentifier","src":"4013:3:5"},"nativeSrc":"4013:16:5","nodeType":"YulFunctionCall","src":"4013:16:5"}],"functionName":{"name":"mload","nativeSrc":"4007:5:5","nodeType":"YulIdentifier","src":"4007:5:5"},"nativeSrc":"4007:23:5","nodeType":"YulFunctionCall","src":"4007:23:5"}],"functionName":{"name":"mstore","nativeSrc":"3984:6:5","nodeType":"YulIdentifier","src":"3984:6:5"},"nativeSrc":"3984:47:5","nodeType":"YulFunctionCall","src":"3984:47:5"},"nativeSrc":"3984:47:5","nodeType":"YulExpressionStatement","src":"3984:47:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"4051:3:5","nodeType":"YulIdentifier","src":"4051:3:5"},{"kind":"number","nativeSrc":"4056:4:5","nodeType":"YulLiteral","src":"4056:4:5","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"4047:3:5","nodeType":"YulIdentifier","src":"4047:3:5"},"nativeSrc":"4047:14:5","nodeType":"YulFunctionCall","src":"4047:14:5"},{"arguments":[{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4077:5:5","nodeType":"YulIdentifier","src":"4077:5:5"},{"kind":"number","nativeSrc":"4084:4:5","nodeType":"YulLiteral","src":"4084:4:5","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"4073:3:5","nodeType":"YulIdentifier","src":"4073:3:5"},"nativeSrc":"4073:16:5","nodeType":"YulFunctionCall","src":"4073:16:5"}],"functionName":{"name":"mload","nativeSrc":"4067:5:5","nodeType":"YulIdentifier","src":"4067:5:5"},"nativeSrc":"4067:23:5","nodeType":"YulFunctionCall","src":"4067:23:5"},{"kind":"number","nativeSrc":"4092:12:5","nodeType":"YulLiteral","src":"4092:12:5","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"4063:3:5","nodeType":"YulIdentifier","src":"4063:3:5"},"nativeSrc":"4063:42:5","nodeType":"YulFunctionCall","src":"4063:42:5"}],"functionName":{"name":"mstore","nativeSrc":"4040:6:5","nodeType":"YulIdentifier","src":"4040:6:5"},"nativeSrc":"4040:66:5","nodeType":"YulFunctionCall","src":"4040:66:5"},"nativeSrc":"4040:66:5","nodeType":"YulExpressionStatement","src":"4040:66:5"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"4126:3:5","nodeType":"YulIdentifier","src":"4126:3:5"},{"kind":"number","nativeSrc":"4131:4:5","nodeType":"YulLiteral","src":"4131:4:5","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"4122:3:5","nodeType":"YulIdentifier","src":"4122:3:5"},"nativeSrc":"4122:14:5","nodeType":"YulFunctionCall","src":"4122:14:5"},{"arguments":[{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4152:5:5","nodeType":"YulIdentifier","src":"4152:5:5"},{"kind":"number","nativeSrc":"4159:4:5","nodeType":"YulLiteral","src":"4159:4:5","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"4148:3:5","nodeType":"YulIdentifier","src":"4148:3:5"},"nativeSrc":"4148:16:5","nodeType":"YulFunctionCall","src":"4148:16:5"}],"functionName":{"name":"mload","nativeSrc":"4142:5:5","nodeType":"YulIdentifier","src":"4142:5:5"},"nativeSrc":"4142:23:5","nodeType":"YulFunctionCall","src":"4142:23:5"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4175:3:5","nodeType":"YulLiteral","src":"4175:3:5","type":"","value":"216"},{"kind":"number","nativeSrc":"4180:1:5","nodeType":"YulLiteral","src":"4180:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4171:3:5","nodeType":"YulIdentifier","src":"4171:3:5"},"nativeSrc":"4171:11:5","nodeType":"YulFunctionCall","src":"4171:11:5"},{"kind":"number","nativeSrc":"4184:1:5","nodeType":"YulLiteral","src":"4184:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4167:3:5","nodeType":"YulIdentifier","src":"4167:3:5"},"nativeSrc":"4167:19:5","nodeType":"YulFunctionCall","src":"4167:19:5"}],"functionName":{"name":"and","nativeSrc":"4138:3:5","nodeType":"YulIdentifier","src":"4138:3:5"},"nativeSrc":"4138:49:5","nodeType":"YulFunctionCall","src":"4138:49:5"}],"functionName":{"name":"mstore","nativeSrc":"4115:6:5","nodeType":"YulIdentifier","src":"4115:6:5"},"nativeSrc":"4115:73:5","nodeType":"YulFunctionCall","src":"4115:73:5"},"nativeSrc":"4115:73:5","nodeType":"YulExpressionStatement","src":"4115:73:5"}]},"name":"abi_encode_struct_StakedTokenUserData","nativeSrc":"3765:429:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"3812:5:5","nodeType":"YulTypedName","src":"3812:5:5","type":""},{"name":"pos","nativeSrc":"3819:3:5","nodeType":"YulTypedName","src":"3819:3:5","type":""}],"src":"3765:429:5"},{"body":{"nativeSrc":"4564:602:5","nodeType":"YulBlock","src":"4564:602:5","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4581:9:5","nodeType":"YulIdentifier","src":"4581:9:5"},{"kind":"number","nativeSrc":"4592:2:5","nodeType":"YulLiteral","src":"4592:2:5","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"4574:6:5","nodeType":"YulIdentifier","src":"4574:6:5"},"nativeSrc":"4574:21:5","nodeType":"YulFunctionCall","src":"4574:21:5"},"nativeSrc":"4574:21:5","nodeType":"YulExpressionStatement","src":"4574:21:5"},{"nativeSrc":"4604:85:5","nodeType":"YulVariableDeclaration","src":"4604:85:5","value":{"arguments":[{"name":"value0","nativeSrc":"4662:6:5","nodeType":"YulIdentifier","src":"4662:6:5"},{"arguments":[{"name":"headStart","nativeSrc":"4674:9:5","nodeType":"YulIdentifier","src":"4674:9:5"},{"kind":"number","nativeSrc":"4685:2:5","nodeType":"YulLiteral","src":"4685:2:5","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4670:3:5","nodeType":"YulIdentifier","src":"4670:3:5"},"nativeSrc":"4670:18:5","nodeType":"YulFunctionCall","src":"4670:18:5"}],"functionName":{"name":"abi_encode_array_struct_StakedTokenData_dyn","nativeSrc":"4618:43:5","nodeType":"YulIdentifier","src":"4618:43:5"},"nativeSrc":"4618:71:5","nodeType":"YulFunctionCall","src":"4618:71:5"},"variables":[{"name":"tail_1","nativeSrc":"4608:6:5","nodeType":"YulTypedName","src":"4608:6:5","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4709:9:5","nodeType":"YulIdentifier","src":"4709:9:5"},{"kind":"number","nativeSrc":"4720:2:5","nodeType":"YulLiteral","src":"4720:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4705:3:5","nodeType":"YulIdentifier","src":"4705:3:5"},"nativeSrc":"4705:18:5","nodeType":"YulFunctionCall","src":"4705:18:5"},{"arguments":[{"name":"tail_1","nativeSrc":"4729:6:5","nodeType":"YulIdentifier","src":"4729:6:5"},{"name":"headStart","nativeSrc":"4737:9:5","nodeType":"YulIdentifier","src":"4737:9:5"}],"functionName":{"name":"sub","nativeSrc":"4725:3:5","nodeType":"YulIdentifier","src":"4725:3:5"},"nativeSrc":"4725:22:5","nodeType":"YulFunctionCall","src":"4725:22:5"}],"functionName":{"name":"mstore","nativeSrc":"4698:6:5","nodeType":"YulIdentifier","src":"4698:6:5"},"nativeSrc":"4698:50:5","nodeType":"YulFunctionCall","src":"4698:50:5"},"nativeSrc":"4698:50:5","nodeType":"YulExpressionStatement","src":"4698:50:5"},{"nativeSrc":"4757:17:5","nodeType":"YulVariableDeclaration","src":"4757:17:5","value":{"name":"tail_1","nativeSrc":"4768:6:5","nodeType":"YulIdentifier","src":"4768:6:5"},"variables":[{"name":"pos","nativeSrc":"4761:3:5","nodeType":"YulTypedName","src":"4761:3:5","type":""}]},{"nativeSrc":"4783:27:5","nodeType":"YulVariableDeclaration","src":"4783:27:5","value":{"arguments":[{"name":"value1","nativeSrc":"4803:6:5","nodeType":"YulIdentifier","src":"4803:6:5"}],"functionName":{"name":"mload","nativeSrc":"4797:5:5","nodeType":"YulIdentifier","src":"4797:5:5"},"nativeSrc":"4797:13:5","nodeType":"YulFunctionCall","src":"4797:13:5"},"variables":[{"name":"length","nativeSrc":"4787:6:5","nodeType":"YulTypedName","src":"4787:6:5","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"4826:6:5","nodeType":"YulIdentifier","src":"4826:6:5"},{"name":"length","nativeSrc":"4834:6:5","nodeType":"YulIdentifier","src":"4834:6:5"}],"functionName":{"name":"mstore","nativeSrc":"4819:6:5","nodeType":"YulIdentifier","src":"4819:6:5"},"nativeSrc":"4819:22:5","nodeType":"YulFunctionCall","src":"4819:22:5"},"nativeSrc":"4819:22:5","nodeType":"YulExpressionStatement","src":"4819:22:5"},{"nativeSrc":"4850:22:5","nodeType":"YulAssignment","src":"4850:22:5","value":{"arguments":[{"name":"tail_1","nativeSrc":"4861:6:5","nodeType":"YulIdentifier","src":"4861:6:5"},{"kind":"number","nativeSrc":"4869:2:5","nodeType":"YulLiteral","src":"4869:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4857:3:5","nodeType":"YulIdentifier","src":"4857:3:5"},"nativeSrc":"4857:15:5","nodeType":"YulFunctionCall","src":"4857:15:5"},"variableNames":[{"name":"pos","nativeSrc":"4850:3:5","nodeType":"YulIdentifier","src":"4850:3:5"}]},{"nativeSrc":"4881:29:5","nodeType":"YulVariableDeclaration","src":"4881:29:5","value":{"arguments":[{"name":"value1","nativeSrc":"4899:6:5","nodeType":"YulIdentifier","src":"4899:6:5"},{"kind":"number","nativeSrc":"4907:2:5","nodeType":"YulLiteral","src":"4907:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4895:3:5","nodeType":"YulIdentifier","src":"4895:3:5"},"nativeSrc":"4895:15:5","nodeType":"YulFunctionCall","src":"4895:15:5"},"variables":[{"name":"srcPtr","nativeSrc":"4885:6:5","nodeType":"YulTypedName","src":"4885:6:5","type":""}]},{"nativeSrc":"4919:10:5","nodeType":"YulVariableDeclaration","src":"4919:10:5","value":{"kind":"number","nativeSrc":"4928:1:5","nodeType":"YulLiteral","src":"4928:1:5","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"4923:1:5","nodeType":"YulTypedName","src":"4923:1:5","type":""}]},{"body":{"nativeSrc":"4987:153:5","nodeType":"YulBlock","src":"4987:153:5","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"5045:6:5","nodeType":"YulIdentifier","src":"5045:6:5"}],"functionName":{"name":"mload","nativeSrc":"5039:5:5","nodeType":"YulIdentifier","src":"5039:5:5"},"nativeSrc":"5039:13:5","nodeType":"YulFunctionCall","src":"5039:13:5"},{"name":"pos","nativeSrc":"5054:3:5","nodeType":"YulIdentifier","src":"5054:3:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenUserData","nativeSrc":"5001:37:5","nodeType":"YulIdentifier","src":"5001:37:5"},"nativeSrc":"5001:57:5","nodeType":"YulFunctionCall","src":"5001:57:5"},"nativeSrc":"5001:57:5","nodeType":"YulExpressionStatement","src":"5001:57:5"},{"nativeSrc":"5071:21:5","nodeType":"YulAssignment","src":"5071:21:5","value":{"arguments":[{"name":"pos","nativeSrc":"5082:3:5","nodeType":"YulIdentifier","src":"5082:3:5"},{"kind":"number","nativeSrc":"5087:4:5","nodeType":"YulLiteral","src":"5087:4:5","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"5078:3:5","nodeType":"YulIdentifier","src":"5078:3:5"},"nativeSrc":"5078:14:5","nodeType":"YulFunctionCall","src":"5078:14:5"},"variableNames":[{"name":"pos","nativeSrc":"5071:3:5","nodeType":"YulIdentifier","src":"5071:3:5"}]},{"nativeSrc":"5105:25:5","nodeType":"YulAssignment","src":"5105:25:5","value":{"arguments":[{"name":"srcPtr","nativeSrc":"5119:6:5","nodeType":"YulIdentifier","src":"5119:6:5"},{"kind":"number","nativeSrc":"5127:2:5","nodeType":"YulLiteral","src":"5127:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5115:3:5","nodeType":"YulIdentifier","src":"5115:3:5"},"nativeSrc":"5115:15:5","nodeType":"YulFunctionCall","src":"5115:15:5"},"variableNames":[{"name":"srcPtr","nativeSrc":"5105:6:5","nodeType":"YulIdentifier","src":"5105:6:5"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"4949:1:5","nodeType":"YulIdentifier","src":"4949:1:5"},{"name":"length","nativeSrc":"4952:6:5","nodeType":"YulIdentifier","src":"4952:6:5"}],"functionName":{"name":"lt","nativeSrc":"4946:2:5","nodeType":"YulIdentifier","src":"4946:2:5"},"nativeSrc":"4946:13:5","nodeType":"YulFunctionCall","src":"4946:13:5"},"nativeSrc":"4938:202:5","nodeType":"YulForLoop","post":{"nativeSrc":"4960:18:5","nodeType":"YulBlock","src":"4960:18:5","statements":[{"nativeSrc":"4962:14:5","nodeType":"YulAssignment","src":"4962:14:5","value":{"arguments":[{"name":"i","nativeSrc":"4971:1:5","nodeType":"YulIdentifier","src":"4971:1:5"},{"kind":"number","nativeSrc":"4974:1:5","nodeType":"YulLiteral","src":"4974:1:5","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"4967:3:5","nodeType":"YulIdentifier","src":"4967:3:5"},"nativeSrc":"4967:9:5","nodeType":"YulFunctionCall","src":"4967:9:5"},"variableNames":[{"name":"i","nativeSrc":"4962:1:5","nodeType":"YulIdentifier","src":"4962:1:5"}]}]},"pre":{"nativeSrc":"4942:3:5","nodeType":"YulBlock","src":"4942:3:5","statements":[]},"src":"4938:202:5"},{"nativeSrc":"5149:11:5","nodeType":"YulAssignment","src":"5149:11:5","value":{"name":"pos","nativeSrc":"5157:3:5","nodeType":"YulIdentifier","src":"5157:3:5"},"variableNames":[{"name":"tail","nativeSrc":"5149:4:5","nodeType":"YulIdentifier","src":"5149:4:5"}]}]},"name":"abi_encode_tuple_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"4199:967:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4525:9:5","nodeType":"YulTypedName","src":"4525:9:5","type":""},{"name":"value1","nativeSrc":"4536:6:5","nodeType":"YulTypedName","src":"4536:6:5","type":""},{"name":"value0","nativeSrc":"4544:6:5","nodeType":"YulTypedName","src":"4544:6:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4555:4:5","nodeType":"YulTypedName","src":"4555:4:5","type":""}],"src":"4199:967:5"},{"body":{"nativeSrc":"5272:102:5","nodeType":"YulBlock","src":"5272:102:5","statements":[{"nativeSrc":"5282:26:5","nodeType":"YulAssignment","src":"5282:26:5","value":{"arguments":[{"name":"headStart","nativeSrc":"5294:9:5","nodeType":"YulIdentifier","src":"5294:9:5"},{"kind":"number","nativeSrc":"5305:2:5","nodeType":"YulLiteral","src":"5305:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5290:3:5","nodeType":"YulIdentifier","src":"5290:3:5"},"nativeSrc":"5290:18:5","nodeType":"YulFunctionCall","src":"5290:18:5"},"variableNames":[{"name":"tail","nativeSrc":"5282:4:5","nodeType":"YulIdentifier","src":"5282:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5324:9:5","nodeType":"YulIdentifier","src":"5324:9:5"},{"arguments":[{"name":"value0","nativeSrc":"5339:6:5","nodeType":"YulIdentifier","src":"5339:6:5"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5355:3:5","nodeType":"YulLiteral","src":"5355:3:5","type":"","value":"160"},{"kind":"number","nativeSrc":"5360:1:5","nodeType":"YulLiteral","src":"5360:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5351:3:5","nodeType":"YulIdentifier","src":"5351:3:5"},"nativeSrc":"5351:11:5","nodeType":"YulFunctionCall","src":"5351:11:5"},{"kind":"number","nativeSrc":"5364:1:5","nodeType":"YulLiteral","src":"5364:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5347:3:5","nodeType":"YulIdentifier","src":"5347:3:5"},"nativeSrc":"5347:19:5","nodeType":"YulFunctionCall","src":"5347:19:5"}],"functionName":{"name":"and","nativeSrc":"5335:3:5","nodeType":"YulIdentifier","src":"5335:3:5"},"nativeSrc":"5335:32:5","nodeType":"YulFunctionCall","src":"5335:32:5"}],"functionName":{"name":"mstore","nativeSrc":"5317:6:5","nodeType":"YulIdentifier","src":"5317:6:5"},"nativeSrc":"5317:51:5","nodeType":"YulFunctionCall","src":"5317:51:5"},"nativeSrc":"5317:51:5","nodeType":"YulExpressionStatement","src":"5317:51:5"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"5171:203:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5241:9:5","nodeType":"YulTypedName","src":"5241:9:5","type":""},{"name":"value0","nativeSrc":"5252:6:5","nodeType":"YulTypedName","src":"5252:6:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5263:4:5","nodeType":"YulTypedName","src":"5263:4:5","type":""}],"src":"5171:203:5"},{"body":{"nativeSrc":"5664:219:5","nodeType":"YulBlock","src":"5664:219:5","statements":[{"nativeSrc":"5674:27:5","nodeType":"YulAssignment","src":"5674:27:5","value":{"arguments":[{"name":"headStart","nativeSrc":"5686:9:5","nodeType":"YulIdentifier","src":"5686:9:5"},{"kind":"number","nativeSrc":"5697:3:5","nodeType":"YulLiteral","src":"5697:3:5","type":"","value":"736"}],"functionName":{"name":"add","nativeSrc":"5682:3:5","nodeType":"YulIdentifier","src":"5682:3:5"},"nativeSrc":"5682:19:5","nodeType":"YulFunctionCall","src":"5682:19:5"},"variableNames":[{"name":"tail","nativeSrc":"5674:4:5","nodeType":"YulIdentifier","src":"5674:4:5"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"5744:6:5","nodeType":"YulIdentifier","src":"5744:6:5"},{"name":"headStart","nativeSrc":"5752:9:5","nodeType":"YulIdentifier","src":"5752:9:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenData","nativeSrc":"5710:33:5","nodeType":"YulIdentifier","src":"5710:33:5"},"nativeSrc":"5710:52:5","nodeType":"YulFunctionCall","src":"5710:52:5"},"nativeSrc":"5710:52:5","nodeType":"YulExpressionStatement","src":"5710:52:5"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"5805:6:5","nodeType":"YulIdentifier","src":"5805:6:5"},{"arguments":[{"name":"headStart","nativeSrc":"5817:9:5","nodeType":"YulIdentifier","src":"5817:9:5"},{"kind":"number","nativeSrc":"5828:3:5","nodeType":"YulLiteral","src":"5828:3:5","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"5813:3:5","nodeType":"YulIdentifier","src":"5813:3:5"},"nativeSrc":"5813:19:5","nodeType":"YulFunctionCall","src":"5813:19:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenData","nativeSrc":"5771:33:5","nodeType":"YulIdentifier","src":"5771:33:5"},"nativeSrc":"5771:62:5","nodeType":"YulFunctionCall","src":"5771:62:5"},"nativeSrc":"5771:62:5","nodeType":"YulExpressionStatement","src":"5771:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5853:9:5","nodeType":"YulIdentifier","src":"5853:9:5"},{"kind":"number","nativeSrc":"5864:3:5","nodeType":"YulLiteral","src":"5864:3:5","type":"","value":"704"}],"functionName":{"name":"add","nativeSrc":"5849:3:5","nodeType":"YulIdentifier","src":"5849:3:5"},"nativeSrc":"5849:19:5","nodeType":"YulFunctionCall","src":"5849:19:5"},{"name":"value2","nativeSrc":"5870:6:5","nodeType":"YulIdentifier","src":"5870:6:5"}],"functionName":{"name":"mstore","nativeSrc":"5842:6:5","nodeType":"YulIdentifier","src":"5842:6:5"},"nativeSrc":"5842:35:5","nodeType":"YulFunctionCall","src":"5842:35:5"},"nativeSrc":"5842:35:5","nodeType":"YulExpressionStatement","src":"5842:35:5"}]},"name":"abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_uint256__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_uint256__fromStack_reversed","nativeSrc":"5379:504:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5617:9:5","nodeType":"YulTypedName","src":"5617:9:5","type":""},{"name":"value2","nativeSrc":"5628:6:5","nodeType":"YulTypedName","src":"5628:6:5","type":""},{"name":"value1","nativeSrc":"5636:6:5","nodeType":"YulTypedName","src":"5636:6:5","type":""},{"name":"value0","nativeSrc":"5644:6:5","nodeType":"YulTypedName","src":"5644:6:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5655:4:5","nodeType":"YulTypedName","src":"5655:4:5","type":""}],"src":"5379:504:5"},{"body":{"nativeSrc":"5958:177:5","nodeType":"YulBlock","src":"5958:177:5","statements":[{"body":{"nativeSrc":"6004:16:5","nodeType":"YulBlock","src":"6004:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6013:1:5","nodeType":"YulLiteral","src":"6013:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"6016:1:5","nodeType":"YulLiteral","src":"6016:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6006:6:5","nodeType":"YulIdentifier","src":"6006:6:5"},"nativeSrc":"6006:12:5","nodeType":"YulFunctionCall","src":"6006:12:5"},"nativeSrc":"6006:12:5","nodeType":"YulExpressionStatement","src":"6006:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5979:7:5","nodeType":"YulIdentifier","src":"5979:7:5"},{"name":"headStart","nativeSrc":"5988:9:5","nodeType":"YulIdentifier","src":"5988:9:5"}],"functionName":{"name":"sub","nativeSrc":"5975:3:5","nodeType":"YulIdentifier","src":"5975:3:5"},"nativeSrc":"5975:23:5","nodeType":"YulFunctionCall","src":"5975:23:5"},{"kind":"number","nativeSrc":"6000:2:5","nodeType":"YulLiteral","src":"6000:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"5971:3:5","nodeType":"YulIdentifier","src":"5971:3:5"},"nativeSrc":"5971:32:5","nodeType":"YulFunctionCall","src":"5971:32:5"},"nativeSrc":"5968:52:5","nodeType":"YulIf","src":"5968:52:5"},{"nativeSrc":"6029:36:5","nodeType":"YulVariableDeclaration","src":"6029:36:5","value":{"arguments":[{"name":"headStart","nativeSrc":"6055:9:5","nodeType":"YulIdentifier","src":"6055:9:5"}],"functionName":{"name":"calldataload","nativeSrc":"6042:12:5","nodeType":"YulIdentifier","src":"6042:12:5"},"nativeSrc":"6042:23:5","nodeType":"YulFunctionCall","src":"6042:23:5"},"variables":[{"name":"value","nativeSrc":"6033:5:5","nodeType":"YulTypedName","src":"6033:5:5","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6099:5:5","nodeType":"YulIdentifier","src":"6099:5:5"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6074:24:5","nodeType":"YulIdentifier","src":"6074:24:5"},"nativeSrc":"6074:31:5","nodeType":"YulFunctionCall","src":"6074:31:5"},"nativeSrc":"6074:31:5","nodeType":"YulExpressionStatement","src":"6074:31:5"},{"nativeSrc":"6114:15:5","nodeType":"YulAssignment","src":"6114:15:5","value":{"name":"value","nativeSrc":"6124:5:5","nodeType":"YulIdentifier","src":"6124:5:5"},"variableNames":[{"name":"value0","nativeSrc":"6114:6:5","nodeType":"YulIdentifier","src":"6114:6:5"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"5888:247:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5924:9:5","nodeType":"YulTypedName","src":"5924:9:5","type":""},{"name":"dataEnd","nativeSrc":"5935:7:5","nodeType":"YulTypedName","src":"5935:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5947:6:5","nodeType":"YulTypedName","src":"5947:6:5","type":""}],"src":"5888:247:5"},{"body":{"nativeSrc":"6625:371:5","nodeType":"YulBlock","src":"6625:371:5","statements":[{"nativeSrc":"6635:28:5","nodeType":"YulAssignment","src":"6635:28:5","value":{"arguments":[{"name":"headStart","nativeSrc":"6647:9:5","nodeType":"YulIdentifier","src":"6647:9:5"},{"kind":"number","nativeSrc":"6658:4:5","nodeType":"YulLiteral","src":"6658:4:5","type":"","value":"1120"}],"functionName":{"name":"add","nativeSrc":"6643:3:5","nodeType":"YulIdentifier","src":"6643:3:5"},"nativeSrc":"6643:20:5","nodeType":"YulFunctionCall","src":"6643:20:5"},"variableNames":[{"name":"tail","nativeSrc":"6635:4:5","nodeType":"YulIdentifier","src":"6635:4:5"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"6706:6:5","nodeType":"YulIdentifier","src":"6706:6:5"},{"name":"headStart","nativeSrc":"6714:9:5","nodeType":"YulIdentifier","src":"6714:9:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenData","nativeSrc":"6672:33:5","nodeType":"YulIdentifier","src":"6672:33:5"},"nativeSrc":"6672:52:5","nodeType":"YulFunctionCall","src":"6672:52:5"},"nativeSrc":"6672:52:5","nodeType":"YulExpressionStatement","src":"6672:52:5"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"6771:6:5","nodeType":"YulIdentifier","src":"6771:6:5"},{"arguments":[{"name":"headStart","nativeSrc":"6783:9:5","nodeType":"YulIdentifier","src":"6783:9:5"},{"kind":"number","nativeSrc":"6794:3:5","nodeType":"YulLiteral","src":"6794:3:5","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"6779:3:5","nodeType":"YulIdentifier","src":"6779:3:5"},"nativeSrc":"6779:19:5","nodeType":"YulFunctionCall","src":"6779:19:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenUserData","nativeSrc":"6733:37:5","nodeType":"YulIdentifier","src":"6733:37:5"},"nativeSrc":"6733:66:5","nodeType":"YulFunctionCall","src":"6733:66:5"},"nativeSrc":"6733:66:5","nodeType":"YulExpressionStatement","src":"6733:66:5"},{"expression":{"arguments":[{"name":"value2","nativeSrc":"6842:6:5","nodeType":"YulIdentifier","src":"6842:6:5"},{"arguments":[{"name":"headStart","nativeSrc":"6854:9:5","nodeType":"YulIdentifier","src":"6854:9:5"},{"kind":"number","nativeSrc":"6865:3:5","nodeType":"YulLiteral","src":"6865:3:5","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"6850:3:5","nodeType":"YulIdentifier","src":"6850:3:5"},"nativeSrc":"6850:19:5","nodeType":"YulFunctionCall","src":"6850:19:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenData","nativeSrc":"6808:33:5","nodeType":"YulIdentifier","src":"6808:33:5"},"nativeSrc":"6808:62:5","nodeType":"YulFunctionCall","src":"6808:62:5"},"nativeSrc":"6808:62:5","nodeType":"YulExpressionStatement","src":"6808:62:5"},{"expression":{"arguments":[{"name":"value3","nativeSrc":"6917:6:5","nodeType":"YulIdentifier","src":"6917:6:5"},{"arguments":[{"name":"headStart","nativeSrc":"6929:9:5","nodeType":"YulIdentifier","src":"6929:9:5"},{"kind":"number","nativeSrc":"6940:3:5","nodeType":"YulLiteral","src":"6940:3:5","type":"","value":"896"}],"functionName":{"name":"add","nativeSrc":"6925:3:5","nodeType":"YulIdentifier","src":"6925:3:5"},"nativeSrc":"6925:19:5","nodeType":"YulFunctionCall","src":"6925:19:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenUserData","nativeSrc":"6879:37:5","nodeType":"YulIdentifier","src":"6879:37:5"},"nativeSrc":"6879:66:5","nodeType":"YulFunctionCall","src":"6879:66:5"},"nativeSrc":"6879:66:5","nodeType":"YulExpressionStatement","src":"6879:66:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6965:9:5","nodeType":"YulIdentifier","src":"6965:9:5"},{"kind":"number","nativeSrc":"6976:4:5","nodeType":"YulLiteral","src":"6976:4:5","type":"","value":"1088"}],"functionName":{"name":"add","nativeSrc":"6961:3:5","nodeType":"YulIdentifier","src":"6961:3:5"},"nativeSrc":"6961:20:5","nodeType":"YulFunctionCall","src":"6961:20:5"},{"name":"value4","nativeSrc":"6983:6:5","nodeType":"YulIdentifier","src":"6983:6:5"}],"functionName":{"name":"mstore","nativeSrc":"6954:6:5","nodeType":"YulIdentifier","src":"6954:6:5"},"nativeSrc":"6954:36:5","nodeType":"YulFunctionCall","src":"6954:36:5"},"nativeSrc":"6954:36:5","nodeType":"YulExpressionStatement","src":"6954:36:5"}]},"name":"abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_uint256__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_uint256__fromStack_reversed","nativeSrc":"6140:856:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6562:9:5","nodeType":"YulTypedName","src":"6562:9:5","type":""},{"name":"value4","nativeSrc":"6573:6:5","nodeType":"YulTypedName","src":"6573:6:5","type":""},{"name":"value3","nativeSrc":"6581:6:5","nodeType":"YulTypedName","src":"6581:6:5","type":""},{"name":"value2","nativeSrc":"6589:6:5","nodeType":"YulTypedName","src":"6589:6:5","type":""},{"name":"value1","nativeSrc":"6597:6:5","nodeType":"YulTypedName","src":"6597:6:5","type":""},{"name":"value0","nativeSrc":"6605:6:5","nodeType":"YulTypedName","src":"6605:6:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6616:4:5","nodeType":"YulTypedName","src":"6616:4:5","type":""}],"src":"6140:856:5"},{"body":{"nativeSrc":"7088:301:5","nodeType":"YulBlock","src":"7088:301:5","statements":[{"body":{"nativeSrc":"7134:16:5","nodeType":"YulBlock","src":"7134:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7143:1:5","nodeType":"YulLiteral","src":"7143:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"7146:1:5","nodeType":"YulLiteral","src":"7146:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7136:6:5","nodeType":"YulIdentifier","src":"7136:6:5"},"nativeSrc":"7136:12:5","nodeType":"YulFunctionCall","src":"7136:12:5"},"nativeSrc":"7136:12:5","nodeType":"YulExpressionStatement","src":"7136:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7109:7:5","nodeType":"YulIdentifier","src":"7109:7:5"},{"name":"headStart","nativeSrc":"7118:9:5","nodeType":"YulIdentifier","src":"7118:9:5"}],"functionName":{"name":"sub","nativeSrc":"7105:3:5","nodeType":"YulIdentifier","src":"7105:3:5"},"nativeSrc":"7105:23:5","nodeType":"YulFunctionCall","src":"7105:23:5"},{"kind":"number","nativeSrc":"7130:2:5","nodeType":"YulLiteral","src":"7130:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7101:3:5","nodeType":"YulIdentifier","src":"7101:3:5"},"nativeSrc":"7101:32:5","nodeType":"YulFunctionCall","src":"7101:32:5"},"nativeSrc":"7098:52:5","nodeType":"YulIf","src":"7098:52:5"},{"nativeSrc":"7159:36:5","nodeType":"YulVariableDeclaration","src":"7159:36:5","value":{"arguments":[{"name":"headStart","nativeSrc":"7185:9:5","nodeType":"YulIdentifier","src":"7185:9:5"}],"functionName":{"name":"calldataload","nativeSrc":"7172:12:5","nodeType":"YulIdentifier","src":"7172:12:5"},"nativeSrc":"7172:23:5","nodeType":"YulFunctionCall","src":"7172:23:5"},"variables":[{"name":"value","nativeSrc":"7163:5:5","nodeType":"YulTypedName","src":"7163:5:5","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7229:5:5","nodeType":"YulIdentifier","src":"7229:5:5"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7204:24:5","nodeType":"YulIdentifier","src":"7204:24:5"},"nativeSrc":"7204:31:5","nodeType":"YulFunctionCall","src":"7204:31:5"},"nativeSrc":"7204:31:5","nodeType":"YulExpressionStatement","src":"7204:31:5"},{"nativeSrc":"7244:15:5","nodeType":"YulAssignment","src":"7244:15:5","value":{"name":"value","nativeSrc":"7254:5:5","nodeType":"YulIdentifier","src":"7254:5:5"},"variableNames":[{"name":"value0","nativeSrc":"7244:6:5","nodeType":"YulIdentifier","src":"7244:6:5"}]},{"nativeSrc":"7268:47:5","nodeType":"YulVariableDeclaration","src":"7268:47:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7300:9:5","nodeType":"YulIdentifier","src":"7300:9:5"},{"kind":"number","nativeSrc":"7311:2:5","nodeType":"YulLiteral","src":"7311:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7296:3:5","nodeType":"YulIdentifier","src":"7296:3:5"},"nativeSrc":"7296:18:5","nodeType":"YulFunctionCall","src":"7296:18:5"}],"functionName":{"name":"calldataload","nativeSrc":"7283:12:5","nodeType":"YulIdentifier","src":"7283:12:5"},"nativeSrc":"7283:32:5","nodeType":"YulFunctionCall","src":"7283:32:5"},"variables":[{"name":"value_1","nativeSrc":"7272:7:5","nodeType":"YulTypedName","src":"7272:7:5","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"7349:7:5","nodeType":"YulIdentifier","src":"7349:7:5"}],"functionName":{"name":"validator_revert_address","nativeSrc":"7324:24:5","nodeType":"YulIdentifier","src":"7324:24:5"},"nativeSrc":"7324:33:5","nodeType":"YulFunctionCall","src":"7324:33:5"},"nativeSrc":"7324:33:5","nodeType":"YulExpressionStatement","src":"7324:33:5"},{"nativeSrc":"7366:17:5","nodeType":"YulAssignment","src":"7366:17:5","value":{"name":"value_1","nativeSrc":"7376:7:5","nodeType":"YulIdentifier","src":"7376:7:5"},"variableNames":[{"name":"value1","nativeSrc":"7366:6:5","nodeType":"YulIdentifier","src":"7366:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"7001:388:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7046:9:5","nodeType":"YulTypedName","src":"7046:9:5","type":""},{"name":"dataEnd","nativeSrc":"7057:7:5","nodeType":"YulTypedName","src":"7057:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7069:6:5","nodeType":"YulTypedName","src":"7069:6:5","type":""},{"name":"value1","nativeSrc":"7077:6:5","nodeType":"YulTypedName","src":"7077:6:5","type":""}],"src":"7001:388:5"},{"body":{"nativeSrc":"7559:104:5","nodeType":"YulBlock","src":"7559:104:5","statements":[{"nativeSrc":"7569:27:5","nodeType":"YulAssignment","src":"7569:27:5","value":{"arguments":[{"name":"headStart","nativeSrc":"7581:9:5","nodeType":"YulIdentifier","src":"7581:9:5"},{"kind":"number","nativeSrc":"7592:3:5","nodeType":"YulLiteral","src":"7592:3:5","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"7577:3:5","nodeType":"YulIdentifier","src":"7577:3:5"},"nativeSrc":"7577:19:5","nodeType":"YulFunctionCall","src":"7577:19:5"},"variableNames":[{"name":"tail","nativeSrc":"7569:4:5","nodeType":"YulIdentifier","src":"7569:4:5"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"7639:6:5","nodeType":"YulIdentifier","src":"7639:6:5"},{"name":"headStart","nativeSrc":"7647:9:5","nodeType":"YulIdentifier","src":"7647:9:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenData","nativeSrc":"7605:33:5","nodeType":"YulIdentifier","src":"7605:33:5"},"nativeSrc":"7605:52:5","nodeType":"YulFunctionCall","src":"7605:52:5"},"nativeSrc":"7605:52:5","nodeType":"YulExpressionStatement","src":"7605:52:5"}]},"name":"abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr__to_t_struct$_StakedTokenData_$888_memory_ptr__fromStack_reversed","nativeSrc":"7394:269:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7528:9:5","nodeType":"YulTypedName","src":"7528:9:5","type":""},{"name":"value0","nativeSrc":"7539:6:5","nodeType":"YulTypedName","src":"7539:6:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7550:4:5","nodeType":"YulTypedName","src":"7550:4:5","type":""}],"src":"7394:269:5"},{"body":{"nativeSrc":"7933:179:5","nodeType":"YulBlock","src":"7933:179:5","statements":[{"nativeSrc":"7943:27:5","nodeType":"YulAssignment","src":"7943:27:5","value":{"arguments":[{"name":"headStart","nativeSrc":"7955:9:5","nodeType":"YulIdentifier","src":"7955:9:5"},{"kind":"number","nativeSrc":"7966:3:5","nodeType":"YulLiteral","src":"7966:3:5","type":"","value":"544"}],"functionName":{"name":"add","nativeSrc":"7951:3:5","nodeType":"YulIdentifier","src":"7951:3:5"},"nativeSrc":"7951:19:5","nodeType":"YulFunctionCall","src":"7951:19:5"},"variableNames":[{"name":"tail","nativeSrc":"7943:4:5","nodeType":"YulIdentifier","src":"7943:4:5"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"8013:6:5","nodeType":"YulIdentifier","src":"8013:6:5"},{"name":"headStart","nativeSrc":"8021:9:5","nodeType":"YulIdentifier","src":"8021:9:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenData","nativeSrc":"7979:33:5","nodeType":"YulIdentifier","src":"7979:33:5"},"nativeSrc":"7979:52:5","nodeType":"YulFunctionCall","src":"7979:52:5"},"nativeSrc":"7979:52:5","nodeType":"YulExpressionStatement","src":"7979:52:5"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"8078:6:5","nodeType":"YulIdentifier","src":"8078:6:5"},{"arguments":[{"name":"headStart","nativeSrc":"8090:9:5","nodeType":"YulIdentifier","src":"8090:9:5"},{"kind":"number","nativeSrc":"8101:3:5","nodeType":"YulLiteral","src":"8101:3:5","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"8086:3:5","nodeType":"YulIdentifier","src":"8086:3:5"},"nativeSrc":"8086:19:5","nodeType":"YulFunctionCall","src":"8086:19:5"}],"functionName":{"name":"abi_encode_struct_StakedTokenUserData","nativeSrc":"8040:37:5","nodeType":"YulIdentifier","src":"8040:37:5"},"nativeSrc":"8040:66:5","nodeType":"YulFunctionCall","src":"8040:66:5"},"nativeSrc":"8040:66:5","nodeType":"YulExpressionStatement","src":"8040:66:5"}]},"name":"abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr__fromStack_reversed","nativeSrc":"7668:444:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7894:9:5","nodeType":"YulTypedName","src":"7894:9:5","type":""},{"name":"value1","nativeSrc":"7905:6:5","nodeType":"YulTypedName","src":"7905:6:5","type":""},{"name":"value0","nativeSrc":"7913:6:5","nodeType":"YulTypedName","src":"7913:6:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7924:4:5","nodeType":"YulTypedName","src":"7924:4:5","type":""}],"src":"7668:444:5"},{"body":{"nativeSrc":"8221:425:5","nodeType":"YulBlock","src":"8221:425:5","statements":[{"body":{"nativeSrc":"8267:16:5","nodeType":"YulBlock","src":"8267:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8276:1:5","nodeType":"YulLiteral","src":"8276:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"8279:1:5","nodeType":"YulLiteral","src":"8279:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8269:6:5","nodeType":"YulIdentifier","src":"8269:6:5"},"nativeSrc":"8269:12:5","nodeType":"YulFunctionCall","src":"8269:12:5"},"nativeSrc":"8269:12:5","nodeType":"YulExpressionStatement","src":"8269:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8242:7:5","nodeType":"YulIdentifier","src":"8242:7:5"},{"name":"headStart","nativeSrc":"8251:9:5","nodeType":"YulIdentifier","src":"8251:9:5"}],"functionName":{"name":"sub","nativeSrc":"8238:3:5","nodeType":"YulIdentifier","src":"8238:3:5"},"nativeSrc":"8238:23:5","nodeType":"YulFunctionCall","src":"8238:23:5"},{"kind":"number","nativeSrc":"8263:2:5","nodeType":"YulLiteral","src":"8263:2:5","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"8234:3:5","nodeType":"YulIdentifier","src":"8234:3:5"},"nativeSrc":"8234:32:5","nodeType":"YulFunctionCall","src":"8234:32:5"},"nativeSrc":"8231:52:5","nodeType":"YulIf","src":"8231:52:5"},{"nativeSrc":"8292:36:5","nodeType":"YulVariableDeclaration","src":"8292:36:5","value":{"arguments":[{"name":"headStart","nativeSrc":"8318:9:5","nodeType":"YulIdentifier","src":"8318:9:5"}],"functionName":{"name":"calldataload","nativeSrc":"8305:12:5","nodeType":"YulIdentifier","src":"8305:12:5"},"nativeSrc":"8305:23:5","nodeType":"YulFunctionCall","src":"8305:23:5"},"variables":[{"name":"value","nativeSrc":"8296:5:5","nodeType":"YulTypedName","src":"8296:5:5","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8362:5:5","nodeType":"YulIdentifier","src":"8362:5:5"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8337:24:5","nodeType":"YulIdentifier","src":"8337:24:5"},"nativeSrc":"8337:31:5","nodeType":"YulFunctionCall","src":"8337:31:5"},"nativeSrc":"8337:31:5","nodeType":"YulExpressionStatement","src":"8337:31:5"},{"nativeSrc":"8377:15:5","nodeType":"YulAssignment","src":"8377:15:5","value":{"name":"value","nativeSrc":"8387:5:5","nodeType":"YulIdentifier","src":"8387:5:5"},"variableNames":[{"name":"value0","nativeSrc":"8377:6:5","nodeType":"YulIdentifier","src":"8377:6:5"}]},{"nativeSrc":"8401:47:5","nodeType":"YulVariableDeclaration","src":"8401:47:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8433:9:5","nodeType":"YulIdentifier","src":"8433:9:5"},{"kind":"number","nativeSrc":"8444:2:5","nodeType":"YulLiteral","src":"8444:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8429:3:5","nodeType":"YulIdentifier","src":"8429:3:5"},"nativeSrc":"8429:18:5","nodeType":"YulFunctionCall","src":"8429:18:5"}],"functionName":{"name":"calldataload","nativeSrc":"8416:12:5","nodeType":"YulIdentifier","src":"8416:12:5"},"nativeSrc":"8416:32:5","nodeType":"YulFunctionCall","src":"8416:32:5"},"variables":[{"name":"value_1","nativeSrc":"8405:7:5","nodeType":"YulTypedName","src":"8405:7:5","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8482:7:5","nodeType":"YulIdentifier","src":"8482:7:5"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8457:24:5","nodeType":"YulIdentifier","src":"8457:24:5"},"nativeSrc":"8457:33:5","nodeType":"YulFunctionCall","src":"8457:33:5"},"nativeSrc":"8457:33:5","nodeType":"YulExpressionStatement","src":"8457:33:5"},{"nativeSrc":"8499:17:5","nodeType":"YulAssignment","src":"8499:17:5","value":{"name":"value_1","nativeSrc":"8509:7:5","nodeType":"YulIdentifier","src":"8509:7:5"},"variableNames":[{"name":"value1","nativeSrc":"8499:6:5","nodeType":"YulIdentifier","src":"8499:6:5"}]},{"nativeSrc":"8525:47:5","nodeType":"YulVariableDeclaration","src":"8525:47:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8557:9:5","nodeType":"YulIdentifier","src":"8557:9:5"},{"kind":"number","nativeSrc":"8568:2:5","nodeType":"YulLiteral","src":"8568:2:5","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8553:3:5","nodeType":"YulIdentifier","src":"8553:3:5"},"nativeSrc":"8553:18:5","nodeType":"YulFunctionCall","src":"8553:18:5"}],"functionName":{"name":"calldataload","nativeSrc":"8540:12:5","nodeType":"YulIdentifier","src":"8540:12:5"},"nativeSrc":"8540:32:5","nodeType":"YulFunctionCall","src":"8540:32:5"},"variables":[{"name":"value_2","nativeSrc":"8529:7:5","nodeType":"YulTypedName","src":"8529:7:5","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"8606:7:5","nodeType":"YulIdentifier","src":"8606:7:5"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8581:24:5","nodeType":"YulIdentifier","src":"8581:24:5"},"nativeSrc":"8581:33:5","nodeType":"YulFunctionCall","src":"8581:33:5"},"nativeSrc":"8581:33:5","nodeType":"YulExpressionStatement","src":"8581:33:5"},{"nativeSrc":"8623:17:5","nodeType":"YulAssignment","src":"8623:17:5","value":{"name":"value_2","nativeSrc":"8633:7:5","nodeType":"YulIdentifier","src":"8633:7:5"},"variableNames":[{"name":"value2","nativeSrc":"8623:6:5","nodeType":"YulIdentifier","src":"8623:6:5"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_address","nativeSrc":"8117:529:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8171:9:5","nodeType":"YulTypedName","src":"8171:9:5","type":""},{"name":"dataEnd","nativeSrc":"8182:7:5","nodeType":"YulTypedName","src":"8182:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8194:6:5","nodeType":"YulTypedName","src":"8194:6:5","type":""},{"name":"value1","nativeSrc":"8202:6:5","nodeType":"YulTypedName","src":"8202:6:5","type":""},{"name":"value2","nativeSrc":"8210:6:5","nodeType":"YulTypedName","src":"8210:6:5","type":""}],"src":"8117:529:5"},{"body":{"nativeSrc":"8825:223:5","nodeType":"YulBlock","src":"8825:223:5","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8842:9:5","nodeType":"YulIdentifier","src":"8842:9:5"},{"kind":"number","nativeSrc":"8853:2:5","nodeType":"YulLiteral","src":"8853:2:5","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"8835:6:5","nodeType":"YulIdentifier","src":"8835:6:5"},"nativeSrc":"8835:21:5","nodeType":"YulFunctionCall","src":"8835:21:5"},"nativeSrc":"8835:21:5","nodeType":"YulExpressionStatement","src":"8835:21:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8876:9:5","nodeType":"YulIdentifier","src":"8876:9:5"},{"kind":"number","nativeSrc":"8887:2:5","nodeType":"YulLiteral","src":"8887:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8872:3:5","nodeType":"YulIdentifier","src":"8872:3:5"},"nativeSrc":"8872:18:5","nodeType":"YulFunctionCall","src":"8872:18:5"},{"kind":"number","nativeSrc":"8892:2:5","nodeType":"YulLiteral","src":"8892:2:5","type":"","value":"33"}],"functionName":{"name":"mstore","nativeSrc":"8865:6:5","nodeType":"YulIdentifier","src":"8865:6:5"},"nativeSrc":"8865:30:5","nodeType":"YulFunctionCall","src":"8865:30:5"},"nativeSrc":"8865:30:5","nodeType":"YulExpressionStatement","src":"8865:30:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8915:9:5","nodeType":"YulIdentifier","src":"8915:9:5"},{"kind":"number","nativeSrc":"8926:2:5","nodeType":"YulLiteral","src":"8926:2:5","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8911:3:5","nodeType":"YulIdentifier","src":"8911:3:5"},"nativeSrc":"8911:18:5","nodeType":"YulFunctionCall","src":"8911:18:5"},{"hexValue":"417272617973206d757374206265206f66207468652073616d65206c656e6774","kind":"string","nativeSrc":"8931:34:5","nodeType":"YulLiteral","src":"8931:34:5","type":"","value":"Arrays must be of the same lengt"}],"functionName":{"name":"mstore","nativeSrc":"8904:6:5","nodeType":"YulIdentifier","src":"8904:6:5"},"nativeSrc":"8904:62:5","nodeType":"YulFunctionCall","src":"8904:62:5"},"nativeSrc":"8904:62:5","nodeType":"YulExpressionStatement","src":"8904:62:5"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8986:9:5","nodeType":"YulIdentifier","src":"8986:9:5"},{"kind":"number","nativeSrc":"8997:2:5","nodeType":"YulLiteral","src":"8997:2:5","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8982:3:5","nodeType":"YulIdentifier","src":"8982:3:5"},"nativeSrc":"8982:18:5","nodeType":"YulFunctionCall","src":"8982:18:5"},{"hexValue":"68","kind":"string","nativeSrc":"9002:3:5","nodeType":"YulLiteral","src":"9002:3:5","type":"","value":"h"}],"functionName":{"name":"mstore","nativeSrc":"8975:6:5","nodeType":"YulIdentifier","src":"8975:6:5"},"nativeSrc":"8975:31:5","nodeType":"YulFunctionCall","src":"8975:31:5"},"nativeSrc":"8975:31:5","nodeType":"YulExpressionStatement","src":"8975:31:5"},{"nativeSrc":"9015:27:5","nodeType":"YulAssignment","src":"9015:27:5","value":{"arguments":[{"name":"headStart","nativeSrc":"9027:9:5","nodeType":"YulIdentifier","src":"9027:9:5"},{"kind":"number","nativeSrc":"9038:3:5","nodeType":"YulLiteral","src":"9038:3:5","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9023:3:5","nodeType":"YulIdentifier","src":"9023:3:5"},"nativeSrc":"9023:19:5","nodeType":"YulFunctionCall","src":"9023:19:5"},"variableNames":[{"name":"tail","nativeSrc":"9015:4:5","nodeType":"YulIdentifier","src":"9015:4:5"}]}]},"name":"abi_encode_tuple_t_stringliteral_79fde935345d5b8f36c4987772c888795595b0c99a35b3b75cbe3d9f98338f9e__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"8651:397:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8802:9:5","nodeType":"YulTypedName","src":"8802:9:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8816:4:5","nodeType":"YulTypedName","src":"8816:4:5","type":""}],"src":"8651:397:5"},{"body":{"nativeSrc":"9085:95:5","nodeType":"YulBlock","src":"9085:95:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9102:1:5","nodeType":"YulLiteral","src":"9102:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9109:3:5","nodeType":"YulLiteral","src":"9109:3:5","type":"","value":"224"},{"kind":"number","nativeSrc":"9114:10:5","nodeType":"YulLiteral","src":"9114:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9105:3:5","nodeType":"YulIdentifier","src":"9105:3:5"},"nativeSrc":"9105:20:5","nodeType":"YulFunctionCall","src":"9105:20:5"}],"functionName":{"name":"mstore","nativeSrc":"9095:6:5","nodeType":"YulIdentifier","src":"9095:6:5"},"nativeSrc":"9095:31:5","nodeType":"YulFunctionCall","src":"9095:31:5"},"nativeSrc":"9095:31:5","nodeType":"YulExpressionStatement","src":"9095:31:5"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9142:1:5","nodeType":"YulLiteral","src":"9142:1:5","type":"","value":"4"},{"kind":"number","nativeSrc":"9145:4:5","nodeType":"YulLiteral","src":"9145:4:5","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"9135:6:5","nodeType":"YulIdentifier","src":"9135:6:5"},"nativeSrc":"9135:15:5","nodeType":"YulFunctionCall","src":"9135:15:5"},"nativeSrc":"9135:15:5","nodeType":"YulExpressionStatement","src":"9135:15:5"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9166:1:5","nodeType":"YulLiteral","src":"9166:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"9169:4:5","nodeType":"YulLiteral","src":"9169:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9159:6:5","nodeType":"YulIdentifier","src":"9159:6:5"},"nativeSrc":"9159:15:5","nodeType":"YulFunctionCall","src":"9159:15:5"},"nativeSrc":"9159:15:5","nodeType":"YulExpressionStatement","src":"9159:15:5"}]},"name":"panic_error_0x41","nativeSrc":"9053:127:5","nodeType":"YulFunctionDefinition","src":"9053:127:5"},{"body":{"nativeSrc":"9265:103:5","nodeType":"YulBlock","src":"9265:103:5","statements":[{"body":{"nativeSrc":"9311:16:5","nodeType":"YulBlock","src":"9311:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9320:1:5","nodeType":"YulLiteral","src":"9320:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"9323:1:5","nodeType":"YulLiteral","src":"9323:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9313:6:5","nodeType":"YulIdentifier","src":"9313:6:5"},"nativeSrc":"9313:12:5","nodeType":"YulFunctionCall","src":"9313:12:5"},"nativeSrc":"9313:12:5","nodeType":"YulExpressionStatement","src":"9313:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9286:7:5","nodeType":"YulIdentifier","src":"9286:7:5"},{"name":"headStart","nativeSrc":"9295:9:5","nodeType":"YulIdentifier","src":"9295:9:5"}],"functionName":{"name":"sub","nativeSrc":"9282:3:5","nodeType":"YulIdentifier","src":"9282:3:5"},"nativeSrc":"9282:23:5","nodeType":"YulFunctionCall","src":"9282:23:5"},{"kind":"number","nativeSrc":"9307:2:5","nodeType":"YulLiteral","src":"9307:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"9278:3:5","nodeType":"YulIdentifier","src":"9278:3:5"},"nativeSrc":"9278:32:5","nodeType":"YulFunctionCall","src":"9278:32:5"},"nativeSrc":"9275:52:5","nodeType":"YulIf","src":"9275:52:5"},{"nativeSrc":"9336:26:5","nodeType":"YulAssignment","src":"9336:26:5","value":{"arguments":[{"name":"headStart","nativeSrc":"9352:9:5","nodeType":"YulIdentifier","src":"9352:9:5"}],"functionName":{"name":"mload","nativeSrc":"9346:5:5","nodeType":"YulIdentifier","src":"9346:5:5"},"nativeSrc":"9346:16:5","nodeType":"YulFunctionCall","src":"9346:16:5"},"variableNames":[{"name":"value0","nativeSrc":"9336:6:5","nodeType":"YulIdentifier","src":"9336:6:5"}]}]},"name":"abi_decode_tuple_t_int256_fromMemory","nativeSrc":"9185:183:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9231:9:5","nodeType":"YulTypedName","src":"9231:9:5","type":""},{"name":"dataEnd","nativeSrc":"9242:7:5","nodeType":"YulTypedName","src":"9242:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9254:6:5","nodeType":"YulTypedName","src":"9254:6:5","type":""}],"src":"9185:183:5"},{"body":{"nativeSrc":"9405:95:5","nodeType":"YulBlock","src":"9405:95:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9422:1:5","nodeType":"YulLiteral","src":"9422:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9429:3:5","nodeType":"YulLiteral","src":"9429:3:5","type":"","value":"224"},{"kind":"number","nativeSrc":"9434:10:5","nodeType":"YulLiteral","src":"9434:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9425:3:5","nodeType":"YulIdentifier","src":"9425:3:5"},"nativeSrc":"9425:20:5","nodeType":"YulFunctionCall","src":"9425:20:5"}],"functionName":{"name":"mstore","nativeSrc":"9415:6:5","nodeType":"YulIdentifier","src":"9415:6:5"},"nativeSrc":"9415:31:5","nodeType":"YulFunctionCall","src":"9415:31:5"},"nativeSrc":"9415:31:5","nodeType":"YulExpressionStatement","src":"9415:31:5"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9462:1:5","nodeType":"YulLiteral","src":"9462:1:5","type":"","value":"4"},{"kind":"number","nativeSrc":"9465:4:5","nodeType":"YulLiteral","src":"9465:4:5","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"9455:6:5","nodeType":"YulIdentifier","src":"9455:6:5"},"nativeSrc":"9455:15:5","nodeType":"YulFunctionCall","src":"9455:15:5"},"nativeSrc":"9455:15:5","nodeType":"YulExpressionStatement","src":"9455:15:5"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9486:1:5","nodeType":"YulLiteral","src":"9486:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"9489:4:5","nodeType":"YulLiteral","src":"9489:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9479:6:5","nodeType":"YulIdentifier","src":"9479:6:5"},"nativeSrc":"9479:15:5","nodeType":"YulFunctionCall","src":"9479:15:5"},"nativeSrc":"9479:15:5","nodeType":"YulExpressionStatement","src":"9479:15:5"}]},"name":"panic_error_0x32","nativeSrc":"9373:127:5","nodeType":"YulFunctionDefinition","src":"9373:127:5"},{"body":{"nativeSrc":"9586:149:5","nodeType":"YulBlock","src":"9586:149:5","statements":[{"body":{"nativeSrc":"9632:16:5","nodeType":"YulBlock","src":"9632:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9641:1:5","nodeType":"YulLiteral","src":"9641:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"9644:1:5","nodeType":"YulLiteral","src":"9644:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9634:6:5","nodeType":"YulIdentifier","src":"9634:6:5"},"nativeSrc":"9634:12:5","nodeType":"YulFunctionCall","src":"9634:12:5"},"nativeSrc":"9634:12:5","nodeType":"YulExpressionStatement","src":"9634:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9607:7:5","nodeType":"YulIdentifier","src":"9607:7:5"},{"name":"headStart","nativeSrc":"9616:9:5","nodeType":"YulIdentifier","src":"9616:9:5"}],"functionName":{"name":"sub","nativeSrc":"9603:3:5","nodeType":"YulIdentifier","src":"9603:3:5"},"nativeSrc":"9603:23:5","nodeType":"YulFunctionCall","src":"9603:23:5"},{"kind":"number","nativeSrc":"9628:2:5","nodeType":"YulLiteral","src":"9628:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"9599:3:5","nodeType":"YulIdentifier","src":"9599:3:5"},"nativeSrc":"9599:32:5","nodeType":"YulFunctionCall","src":"9599:32:5"},"nativeSrc":"9596:52:5","nodeType":"YulIf","src":"9596:52:5"},{"nativeSrc":"9657:14:5","nodeType":"YulVariableDeclaration","src":"9657:14:5","value":{"kind":"number","nativeSrc":"9670:1:5","nodeType":"YulLiteral","src":"9670:1:5","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"9661:5:5","nodeType":"YulTypedName","src":"9661:5:5","type":""}]},{"nativeSrc":"9680:25:5","nodeType":"YulAssignment","src":"9680:25:5","value":{"arguments":[{"name":"headStart","nativeSrc":"9695:9:5","nodeType":"YulIdentifier","src":"9695:9:5"}],"functionName":{"name":"mload","nativeSrc":"9689:5:5","nodeType":"YulIdentifier","src":"9689:5:5"},"nativeSrc":"9689:16:5","nodeType":"YulFunctionCall","src":"9689:16:5"},"variableNames":[{"name":"value","nativeSrc":"9680:5:5","nodeType":"YulIdentifier","src":"9680:5:5"}]},{"nativeSrc":"9714:15:5","nodeType":"YulAssignment","src":"9714:15:5","value":{"name":"value","nativeSrc":"9724:5:5","nodeType":"YulIdentifier","src":"9724:5:5"},"variableNames":[{"name":"value0","nativeSrc":"9714:6:5","nodeType":"YulIdentifier","src":"9714:6:5"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"9505:230:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9552:9:5","nodeType":"YulTypedName","src":"9552:9:5","type":""},{"name":"dataEnd","nativeSrc":"9563:7:5","nodeType":"YulTypedName","src":"9563:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9575:6:5","nodeType":"YulTypedName","src":"9575:6:5","type":""}],"src":"9505:230:5"},{"body":{"nativeSrc":"9841:76:5","nodeType":"YulBlock","src":"9841:76:5","statements":[{"nativeSrc":"9851:26:5","nodeType":"YulAssignment","src":"9851:26:5","value":{"arguments":[{"name":"headStart","nativeSrc":"9863:9:5","nodeType":"YulIdentifier","src":"9863:9:5"},{"kind":"number","nativeSrc":"9874:2:5","nodeType":"YulLiteral","src":"9874:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9859:3:5","nodeType":"YulIdentifier","src":"9859:3:5"},"nativeSrc":"9859:18:5","nodeType":"YulFunctionCall","src":"9859:18:5"},"variableNames":[{"name":"tail","nativeSrc":"9851:4:5","nodeType":"YulIdentifier","src":"9851:4:5"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9893:9:5","nodeType":"YulIdentifier","src":"9893:9:5"},{"name":"value0","nativeSrc":"9904:6:5","nodeType":"YulIdentifier","src":"9904:6:5"}],"functionName":{"name":"mstore","nativeSrc":"9886:6:5","nodeType":"YulIdentifier","src":"9886:6:5"},"nativeSrc":"9886:25:5","nodeType":"YulFunctionCall","src":"9886:25:5"},"nativeSrc":"9886:25:5","nodeType":"YulExpressionStatement","src":"9886:25:5"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"9740:177:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9810:9:5","nodeType":"YulTypedName","src":"9810:9:5","type":""},{"name":"value0","nativeSrc":"9821:6:5","nodeType":"YulTypedName","src":"9821:6:5","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9832:4:5","nodeType":"YulTypedName","src":"9832:4:5","type":""}],"src":"9740:177:5"},{"body":{"nativeSrc":"9982:132:5","nodeType":"YulBlock","src":"9982:132:5","statements":[{"nativeSrc":"9992:22:5","nodeType":"YulAssignment","src":"9992:22:5","value":{"arguments":[{"name":"offset","nativeSrc":"10007:6:5","nodeType":"YulIdentifier","src":"10007:6:5"}],"functionName":{"name":"mload","nativeSrc":"10001:5:5","nodeType":"YulIdentifier","src":"10001:5:5"},"nativeSrc":"10001:13:5","nodeType":"YulFunctionCall","src":"10001:13:5"},"variableNames":[{"name":"value","nativeSrc":"9992:5:5","nodeType":"YulIdentifier","src":"9992:5:5"}]},{"body":{"nativeSrc":"10092:16:5","nodeType":"YulBlock","src":"10092:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10101:1:5","nodeType":"YulLiteral","src":"10101:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"10104:1:5","nodeType":"YulLiteral","src":"10104:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10094:6:5","nodeType":"YulIdentifier","src":"10094:6:5"},"nativeSrc":"10094:12:5","nodeType":"YulFunctionCall","src":"10094:12:5"},"nativeSrc":"10094:12:5","nodeType":"YulExpressionStatement","src":"10094:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10036:5:5","nodeType":"YulIdentifier","src":"10036:5:5"},{"arguments":[{"name":"value","nativeSrc":"10047:5:5","nodeType":"YulIdentifier","src":"10047:5:5"},{"kind":"number","nativeSrc":"10054:34:5","nodeType":"YulLiteral","src":"10054:34:5","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"10043:3:5","nodeType":"YulIdentifier","src":"10043:3:5"},"nativeSrc":"10043:46:5","nodeType":"YulFunctionCall","src":"10043:46:5"}],"functionName":{"name":"eq","nativeSrc":"10033:2:5","nodeType":"YulIdentifier","src":"10033:2:5"},"nativeSrc":"10033:57:5","nodeType":"YulFunctionCall","src":"10033:57:5"}],"functionName":{"name":"iszero","nativeSrc":"10026:6:5","nodeType":"YulIdentifier","src":"10026:6:5"},"nativeSrc":"10026:65:5","nodeType":"YulFunctionCall","src":"10026:65:5"},"nativeSrc":"10023:85:5","nodeType":"YulIf","src":"10023:85:5"}]},"name":"abi_decode_uint128_fromMemory","nativeSrc":"9922:192:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"9961:6:5","nodeType":"YulTypedName","src":"9961:6:5","type":""}],"returnVariables":[{"name":"value","nativeSrc":"9972:5:5","nodeType":"YulTypedName","src":"9972:5:5","type":""}],"src":"9922:192:5"},{"body":{"nativeSrc":"10234:285:5","nodeType":"YulBlock","src":"10234:285:5","statements":[{"body":{"nativeSrc":"10280:16:5","nodeType":"YulBlock","src":"10280:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10289:1:5","nodeType":"YulLiteral","src":"10289:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"10292:1:5","nodeType":"YulLiteral","src":"10292:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10282:6:5","nodeType":"YulIdentifier","src":"10282:6:5"},"nativeSrc":"10282:12:5","nodeType":"YulFunctionCall","src":"10282:12:5"},"nativeSrc":"10282:12:5","nodeType":"YulExpressionStatement","src":"10282:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10255:7:5","nodeType":"YulIdentifier","src":"10255:7:5"},{"name":"headStart","nativeSrc":"10264:9:5","nodeType":"YulIdentifier","src":"10264:9:5"}],"functionName":{"name":"sub","nativeSrc":"10251:3:5","nodeType":"YulIdentifier","src":"10251:3:5"},"nativeSrc":"10251:23:5","nodeType":"YulFunctionCall","src":"10251:23:5"},{"kind":"number","nativeSrc":"10276:2:5","nodeType":"YulLiteral","src":"10276:2:5","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"10247:3:5","nodeType":"YulIdentifier","src":"10247:3:5"},"nativeSrc":"10247:32:5","nodeType":"YulFunctionCall","src":"10247:32:5"},"nativeSrc":"10244:52:5","nodeType":"YulIf","src":"10244:52:5"},{"nativeSrc":"10305:50:5","nodeType":"YulAssignment","src":"10305:50:5","value":{"arguments":[{"name":"headStart","nativeSrc":"10345:9:5","nodeType":"YulIdentifier","src":"10345:9:5"}],"functionName":{"name":"abi_decode_uint128_fromMemory","nativeSrc":"10315:29:5","nodeType":"YulIdentifier","src":"10315:29:5"},"nativeSrc":"10315:40:5","nodeType":"YulFunctionCall","src":"10315:40:5"},"variableNames":[{"name":"value0","nativeSrc":"10305:6:5","nodeType":"YulIdentifier","src":"10305:6:5"}]},{"nativeSrc":"10364:59:5","nodeType":"YulAssignment","src":"10364:59:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10408:9:5","nodeType":"YulIdentifier","src":"10408:9:5"},{"kind":"number","nativeSrc":"10419:2:5","nodeType":"YulLiteral","src":"10419:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10404:3:5","nodeType":"YulIdentifier","src":"10404:3:5"},"nativeSrc":"10404:18:5","nodeType":"YulFunctionCall","src":"10404:18:5"}],"functionName":{"name":"abi_decode_uint128_fromMemory","nativeSrc":"10374:29:5","nodeType":"YulIdentifier","src":"10374:29:5"},"nativeSrc":"10374:49:5","nodeType":"YulFunctionCall","src":"10374:49:5"},"variableNames":[{"name":"value1","nativeSrc":"10364:6:5","nodeType":"YulIdentifier","src":"10364:6:5"}]},{"nativeSrc":"10432:14:5","nodeType":"YulVariableDeclaration","src":"10432:14:5","value":{"kind":"number","nativeSrc":"10445:1:5","nodeType":"YulLiteral","src":"10445:1:5","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"10436:5:5","nodeType":"YulTypedName","src":"10436:5:5","type":""}]},{"nativeSrc":"10455:34:5","nodeType":"YulAssignment","src":"10455:34:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10474:9:5","nodeType":"YulIdentifier","src":"10474:9:5"},{"kind":"number","nativeSrc":"10485:2:5","nodeType":"YulLiteral","src":"10485:2:5","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10470:3:5","nodeType":"YulIdentifier","src":"10470:3:5"},"nativeSrc":"10470:18:5","nodeType":"YulFunctionCall","src":"10470:18:5"}],"functionName":{"name":"mload","nativeSrc":"10464:5:5","nodeType":"YulIdentifier","src":"10464:5:5"},"nativeSrc":"10464:25:5","nodeType":"YulFunctionCall","src":"10464:25:5"},"variableNames":[{"name":"value","nativeSrc":"10455:5:5","nodeType":"YulIdentifier","src":"10455:5:5"}]},{"nativeSrc":"10498:15:5","nodeType":"YulAssignment","src":"10498:15:5","value":{"name":"value","nativeSrc":"10508:5:5","nodeType":"YulIdentifier","src":"10508:5:5"},"variableNames":[{"name":"value2","nativeSrc":"10498:6:5","nodeType":"YulIdentifier","src":"10498:6:5"}]}]},"name":"abi_decode_tuple_t_uint128t_uint128t_uint256_fromMemory","nativeSrc":"10119:400:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10184:9:5","nodeType":"YulTypedName","src":"10184:9:5","type":""},{"name":"dataEnd","nativeSrc":"10195:7:5","nodeType":"YulTypedName","src":"10195:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10207:6:5","nodeType":"YulTypedName","src":"10207:6:5","type":""},{"name":"value1","nativeSrc":"10215:6:5","nodeType":"YulTypedName","src":"10215:6:5","type":""},{"name":"value2","nativeSrc":"10223:6:5","nodeType":"YulTypedName","src":"10223:6:5","type":""}],"src":"10119:400:5"},{"body":{"nativeSrc":"10584:117:5","nodeType":"YulBlock","src":"10584:117:5","statements":[{"nativeSrc":"10594:22:5","nodeType":"YulAssignment","src":"10594:22:5","value":{"arguments":[{"name":"offset","nativeSrc":"10609:6:5","nodeType":"YulIdentifier","src":"10609:6:5"}],"functionName":{"name":"mload","nativeSrc":"10603:5:5","nodeType":"YulIdentifier","src":"10603:5:5"},"nativeSrc":"10603:13:5","nodeType":"YulFunctionCall","src":"10603:13:5"},"variableNames":[{"name":"value","nativeSrc":"10594:5:5","nodeType":"YulIdentifier","src":"10594:5:5"}]},{"body":{"nativeSrc":"10679:16:5","nodeType":"YulBlock","src":"10679:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10688:1:5","nodeType":"YulLiteral","src":"10688:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"10691:1:5","nodeType":"YulLiteral","src":"10691:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10681:6:5","nodeType":"YulIdentifier","src":"10681:6:5"},"nativeSrc":"10681:12:5","nodeType":"YulFunctionCall","src":"10681:12:5"},"nativeSrc":"10681:12:5","nodeType":"YulExpressionStatement","src":"10681:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"10638:5:5","nodeType":"YulIdentifier","src":"10638:5:5"},{"arguments":[{"name":"value","nativeSrc":"10649:5:5","nodeType":"YulIdentifier","src":"10649:5:5"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10664:3:5","nodeType":"YulLiteral","src":"10664:3:5","type":"","value":"216"},{"kind":"number","nativeSrc":"10669:1:5","nodeType":"YulLiteral","src":"10669:1:5","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"10660:3:5","nodeType":"YulIdentifier","src":"10660:3:5"},"nativeSrc":"10660:11:5","nodeType":"YulFunctionCall","src":"10660:11:5"},{"kind":"number","nativeSrc":"10673:1:5","nodeType":"YulLiteral","src":"10673:1:5","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"10656:3:5","nodeType":"YulIdentifier","src":"10656:3:5"},"nativeSrc":"10656:19:5","nodeType":"YulFunctionCall","src":"10656:19:5"}],"functionName":{"name":"and","nativeSrc":"10645:3:5","nodeType":"YulIdentifier","src":"10645:3:5"},"nativeSrc":"10645:31:5","nodeType":"YulFunctionCall","src":"10645:31:5"}],"functionName":{"name":"eq","nativeSrc":"10635:2:5","nodeType":"YulIdentifier","src":"10635:2:5"},"nativeSrc":"10635:42:5","nodeType":"YulFunctionCall","src":"10635:42:5"}],"functionName":{"name":"iszero","nativeSrc":"10628:6:5","nodeType":"YulIdentifier","src":"10628:6:5"},"nativeSrc":"10628:50:5","nodeType":"YulFunctionCall","src":"10628:50:5"},"nativeSrc":"10625:70:5","nodeType":"YulIf","src":"10625:70:5"}]},"name":"abi_decode_uint216_fromMemory","nativeSrc":"10524:177:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"10563:6:5","nodeType":"YulTypedName","src":"10563:6:5","type":""}],"returnVariables":[{"name":"value","nativeSrc":"10574:5:5","nodeType":"YulTypedName","src":"10574:5:5","type":""}],"src":"10524:177:5"},{"body":{"nativeSrc":"10787:127:5","nodeType":"YulBlock","src":"10787:127:5","statements":[{"body":{"nativeSrc":"10833:16:5","nodeType":"YulBlock","src":"10833:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10842:1:5","nodeType":"YulLiteral","src":"10842:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"10845:1:5","nodeType":"YulLiteral","src":"10845:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10835:6:5","nodeType":"YulIdentifier","src":"10835:6:5"},"nativeSrc":"10835:12:5","nodeType":"YulFunctionCall","src":"10835:12:5"},"nativeSrc":"10835:12:5","nodeType":"YulExpressionStatement","src":"10835:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10808:7:5","nodeType":"YulIdentifier","src":"10808:7:5"},{"name":"headStart","nativeSrc":"10817:9:5","nodeType":"YulIdentifier","src":"10817:9:5"}],"functionName":{"name":"sub","nativeSrc":"10804:3:5","nodeType":"YulIdentifier","src":"10804:3:5"},"nativeSrc":"10804:23:5","nodeType":"YulFunctionCall","src":"10804:23:5"},{"kind":"number","nativeSrc":"10829:2:5","nodeType":"YulLiteral","src":"10829:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10800:3:5","nodeType":"YulIdentifier","src":"10800:3:5"},"nativeSrc":"10800:32:5","nodeType":"YulFunctionCall","src":"10800:32:5"},"nativeSrc":"10797:52:5","nodeType":"YulIf","src":"10797:52:5"},{"nativeSrc":"10858:50:5","nodeType":"YulAssignment","src":"10858:50:5","value":{"arguments":[{"name":"headStart","nativeSrc":"10898:9:5","nodeType":"YulIdentifier","src":"10898:9:5"}],"functionName":{"name":"abi_decode_uint216_fromMemory","nativeSrc":"10868:29:5","nodeType":"YulIdentifier","src":"10868:29:5"},"nativeSrc":"10868:40:5","nodeType":"YulFunctionCall","src":"10868:40:5"},"variableNames":[{"name":"value0","nativeSrc":"10858:6:5","nodeType":"YulIdentifier","src":"10858:6:5"}]}]},"name":"abi_decode_tuple_t_uint216_fromMemory","nativeSrc":"10706:208:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10753:9:5","nodeType":"YulTypedName","src":"10753:9:5","type":""},{"name":"dataEnd","nativeSrc":"10764:7:5","nodeType":"YulTypedName","src":"10764:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10776:6:5","nodeType":"YulTypedName","src":"10776:6:5","type":""}],"src":"10706:208:5"},{"body":{"nativeSrc":"11000:170:5","nodeType":"YulBlock","src":"11000:170:5","statements":[{"body":{"nativeSrc":"11046:16:5","nodeType":"YulBlock","src":"11046:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11055:1:5","nodeType":"YulLiteral","src":"11055:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"11058:1:5","nodeType":"YulLiteral","src":"11058:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11048:6:5","nodeType":"YulIdentifier","src":"11048:6:5"},"nativeSrc":"11048:12:5","nodeType":"YulFunctionCall","src":"11048:12:5"},"nativeSrc":"11048:12:5","nodeType":"YulExpressionStatement","src":"11048:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11021:7:5","nodeType":"YulIdentifier","src":"11021:7:5"},{"name":"headStart","nativeSrc":"11030:9:5","nodeType":"YulIdentifier","src":"11030:9:5"}],"functionName":{"name":"sub","nativeSrc":"11017:3:5","nodeType":"YulIdentifier","src":"11017:3:5"},"nativeSrc":"11017:23:5","nodeType":"YulFunctionCall","src":"11017:23:5"},{"kind":"number","nativeSrc":"11042:2:5","nodeType":"YulLiteral","src":"11042:2:5","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11013:3:5","nodeType":"YulIdentifier","src":"11013:3:5"},"nativeSrc":"11013:32:5","nodeType":"YulFunctionCall","src":"11013:32:5"},"nativeSrc":"11010:52:5","nodeType":"YulIf","src":"11010:52:5"},{"nativeSrc":"11071:29:5","nodeType":"YulVariableDeclaration","src":"11071:29:5","value":{"arguments":[{"name":"headStart","nativeSrc":"11090:9:5","nodeType":"YulIdentifier","src":"11090:9:5"}],"functionName":{"name":"mload","nativeSrc":"11084:5:5","nodeType":"YulIdentifier","src":"11084:5:5"},"nativeSrc":"11084:16:5","nodeType":"YulFunctionCall","src":"11084:16:5"},"variables":[{"name":"value","nativeSrc":"11075:5:5","nodeType":"YulTypedName","src":"11075:5:5","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11134:5:5","nodeType":"YulIdentifier","src":"11134:5:5"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11109:24:5","nodeType":"YulIdentifier","src":"11109:24:5"},"nativeSrc":"11109:31:5","nodeType":"YulFunctionCall","src":"11109:31:5"},"nativeSrc":"11109:31:5","nodeType":"YulExpressionStatement","src":"11109:31:5"},{"nativeSrc":"11149:15:5","nodeType":"YulAssignment","src":"11149:15:5","value":{"name":"value","nativeSrc":"11159:5:5","nodeType":"YulIdentifier","src":"11159:5:5"},"variableNames":[{"name":"value0","nativeSrc":"11149:6:5","nodeType":"YulIdentifier","src":"11149:6:5"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"10919:251:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10966:9:5","nodeType":"YulTypedName","src":"10966:9:5","type":""},{"name":"dataEnd","nativeSrc":"10977:7:5","nodeType":"YulTypedName","src":"10977:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10989:6:5","nodeType":"YulTypedName","src":"10989:6:5","type":""}],"src":"10919:251:5"},{"body":{"nativeSrc":"11272:270:5","nodeType":"YulBlock","src":"11272:270:5","statements":[{"body":{"nativeSrc":"11318:16:5","nodeType":"YulBlock","src":"11318:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11327:1:5","nodeType":"YulLiteral","src":"11327:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"11330:1:5","nodeType":"YulLiteral","src":"11330:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11320:6:5","nodeType":"YulIdentifier","src":"11320:6:5"},"nativeSrc":"11320:12:5","nodeType":"YulFunctionCall","src":"11320:12:5"},"nativeSrc":"11320:12:5","nodeType":"YulExpressionStatement","src":"11320:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11293:7:5","nodeType":"YulIdentifier","src":"11293:7:5"},{"name":"headStart","nativeSrc":"11302:9:5","nodeType":"YulIdentifier","src":"11302:9:5"}],"functionName":{"name":"sub","nativeSrc":"11289:3:5","nodeType":"YulIdentifier","src":"11289:3:5"},"nativeSrc":"11289:23:5","nodeType":"YulFunctionCall","src":"11289:23:5"},{"kind":"number","nativeSrc":"11314:2:5","nodeType":"YulLiteral","src":"11314:2:5","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"11285:3:5","nodeType":"YulIdentifier","src":"11285:3:5"},"nativeSrc":"11285:32:5","nodeType":"YulFunctionCall","src":"11285:32:5"},"nativeSrc":"11282:52:5","nodeType":"YulIf","src":"11282:52:5"},{"nativeSrc":"11343:29:5","nodeType":"YulVariableDeclaration","src":"11343:29:5","value":{"arguments":[{"name":"headStart","nativeSrc":"11362:9:5","nodeType":"YulIdentifier","src":"11362:9:5"}],"functionName":{"name":"mload","nativeSrc":"11356:5:5","nodeType":"YulIdentifier","src":"11356:5:5"},"nativeSrc":"11356:16:5","nodeType":"YulFunctionCall","src":"11356:16:5"},"variables":[{"name":"value","nativeSrc":"11347:5:5","nodeType":"YulTypedName","src":"11347:5:5","type":""}]},{"body":{"nativeSrc":"11428:16:5","nodeType":"YulBlock","src":"11428:16:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11437:1:5","nodeType":"YulLiteral","src":"11437:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"11440:1:5","nodeType":"YulLiteral","src":"11440:1:5","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11430:6:5","nodeType":"YulIdentifier","src":"11430:6:5"},"nativeSrc":"11430:12:5","nodeType":"YulFunctionCall","src":"11430:12:5"},"nativeSrc":"11430:12:5","nodeType":"YulExpressionStatement","src":"11430:12:5"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11394:5:5","nodeType":"YulIdentifier","src":"11394:5:5"},{"arguments":[{"name":"value","nativeSrc":"11405:5:5","nodeType":"YulIdentifier","src":"11405:5:5"},{"kind":"number","nativeSrc":"11412:12:5","nodeType":"YulLiteral","src":"11412:12:5","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"11401:3:5","nodeType":"YulIdentifier","src":"11401:3:5"},"nativeSrc":"11401:24:5","nodeType":"YulFunctionCall","src":"11401:24:5"}],"functionName":{"name":"eq","nativeSrc":"11391:2:5","nodeType":"YulIdentifier","src":"11391:2:5"},"nativeSrc":"11391:35:5","nodeType":"YulFunctionCall","src":"11391:35:5"}],"functionName":{"name":"iszero","nativeSrc":"11384:6:5","nodeType":"YulIdentifier","src":"11384:6:5"},"nativeSrc":"11384:43:5","nodeType":"YulFunctionCall","src":"11384:43:5"},"nativeSrc":"11381:63:5","nodeType":"YulIf","src":"11381:63:5"},{"nativeSrc":"11453:15:5","nodeType":"YulAssignment","src":"11453:15:5","value":{"name":"value","nativeSrc":"11463:5:5","nodeType":"YulIdentifier","src":"11463:5:5"},"variableNames":[{"name":"value0","nativeSrc":"11453:6:5","nodeType":"YulIdentifier","src":"11453:6:5"}]},{"nativeSrc":"11477:59:5","nodeType":"YulAssignment","src":"11477:59:5","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11521:9:5","nodeType":"YulIdentifier","src":"11521:9:5"},{"kind":"number","nativeSrc":"11532:2:5","nodeType":"YulLiteral","src":"11532:2:5","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11517:3:5","nodeType":"YulIdentifier","src":"11517:3:5"},"nativeSrc":"11517:18:5","nodeType":"YulFunctionCall","src":"11517:18:5"}],"functionName":{"name":"abi_decode_uint216_fromMemory","nativeSrc":"11487:29:5","nodeType":"YulIdentifier","src":"11487:29:5"},"nativeSrc":"11487:49:5","nodeType":"YulFunctionCall","src":"11487:49:5"},"variableNames":[{"name":"value1","nativeSrc":"11477:6:5","nodeType":"YulIdentifier","src":"11477:6:5"}]}]},"name":"abi_decode_tuple_t_uint40t_uint216_fromMemory","nativeSrc":"11175:367:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11230:9:5","nodeType":"YulTypedName","src":"11230:9:5","type":""},{"name":"dataEnd","nativeSrc":"11241:7:5","nodeType":"YulTypedName","src":"11241:7:5","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11253:6:5","nodeType":"YulTypedName","src":"11253:6:5","type":""},{"name":"value1","nativeSrc":"11261:6:5","nodeType":"YulTypedName","src":"11261:6:5","type":""}],"src":"11175:367:5"},{"body":{"nativeSrc":"11599:213:5","nodeType":"YulBlock","src":"11599:213:5","statements":[{"nativeSrc":"11609:20:5","nodeType":"YulAssignment","src":"11609:20:5","value":{"arguments":[{"name":"x","nativeSrc":"11624:1:5","nodeType":"YulIdentifier","src":"11624:1:5"},{"name":"y","nativeSrc":"11627:1:5","nodeType":"YulIdentifier","src":"11627:1:5"}],"functionName":{"name":"mul","nativeSrc":"11620:3:5","nodeType":"YulIdentifier","src":"11620:3:5"},"nativeSrc":"11620:9:5","nodeType":"YulFunctionCall","src":"11620:9:5"},"variableNames":[{"name":"product","nativeSrc":"11609:7:5","nodeType":"YulIdentifier","src":"11609:7:5"}]},{"body":{"nativeSrc":"11695:111:5","nodeType":"YulBlock","src":"11695:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11716:1:5","nodeType":"YulLiteral","src":"11716:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11723:3:5","nodeType":"YulLiteral","src":"11723:3:5","type":"","value":"224"},{"kind":"number","nativeSrc":"11728:10:5","nodeType":"YulLiteral","src":"11728:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11719:3:5","nodeType":"YulIdentifier","src":"11719:3:5"},"nativeSrc":"11719:20:5","nodeType":"YulFunctionCall","src":"11719:20:5"}],"functionName":{"name":"mstore","nativeSrc":"11709:6:5","nodeType":"YulIdentifier","src":"11709:6:5"},"nativeSrc":"11709:31:5","nodeType":"YulFunctionCall","src":"11709:31:5"},"nativeSrc":"11709:31:5","nodeType":"YulExpressionStatement","src":"11709:31:5"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11760:1:5","nodeType":"YulLiteral","src":"11760:1:5","type":"","value":"4"},{"kind":"number","nativeSrc":"11763:4:5","nodeType":"YulLiteral","src":"11763:4:5","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"11753:6:5","nodeType":"YulIdentifier","src":"11753:6:5"},"nativeSrc":"11753:15:5","nodeType":"YulFunctionCall","src":"11753:15:5"},"nativeSrc":"11753:15:5","nodeType":"YulExpressionStatement","src":"11753:15:5"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11788:1:5","nodeType":"YulLiteral","src":"11788:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"11791:4:5","nodeType":"YulLiteral","src":"11791:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11781:6:5","nodeType":"YulIdentifier","src":"11781:6:5"},"nativeSrc":"11781:15:5","nodeType":"YulFunctionCall","src":"11781:15:5"},"nativeSrc":"11781:15:5","nodeType":"YulExpressionStatement","src":"11781:15:5"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"11658:1:5","nodeType":"YulIdentifier","src":"11658:1:5"}],"functionName":{"name":"iszero","nativeSrc":"11651:6:5","nodeType":"YulIdentifier","src":"11651:6:5"},"nativeSrc":"11651:9:5","nodeType":"YulFunctionCall","src":"11651:9:5"},{"arguments":[{"name":"y","nativeSrc":"11665:1:5","nodeType":"YulIdentifier","src":"11665:1:5"},{"arguments":[{"name":"product","nativeSrc":"11672:7:5","nodeType":"YulIdentifier","src":"11672:7:5"},{"name":"x","nativeSrc":"11681:1:5","nodeType":"YulIdentifier","src":"11681:1:5"}],"functionName":{"name":"div","nativeSrc":"11668:3:5","nodeType":"YulIdentifier","src":"11668:3:5"},"nativeSrc":"11668:15:5","nodeType":"YulFunctionCall","src":"11668:15:5"}],"functionName":{"name":"eq","nativeSrc":"11662:2:5","nodeType":"YulIdentifier","src":"11662:2:5"},"nativeSrc":"11662:22:5","nodeType":"YulFunctionCall","src":"11662:22:5"}],"functionName":{"name":"or","nativeSrc":"11648:2:5","nodeType":"YulIdentifier","src":"11648:2:5"},"nativeSrc":"11648:37:5","nodeType":"YulFunctionCall","src":"11648:37:5"}],"functionName":{"name":"iszero","nativeSrc":"11641:6:5","nodeType":"YulIdentifier","src":"11641:6:5"},"nativeSrc":"11641:45:5","nodeType":"YulFunctionCall","src":"11641:45:5"},"nativeSrc":"11638:168:5","nodeType":"YulIf","src":"11638:168:5"}]},"name":"checked_mul_t_uint256","nativeSrc":"11547:265:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"11578:1:5","nodeType":"YulTypedName","src":"11578:1:5","type":""},{"name":"y","nativeSrc":"11581:1:5","nodeType":"YulTypedName","src":"11581:1:5","type":""}],"returnVariables":[{"name":"product","nativeSrc":"11587:7:5","nodeType":"YulTypedName","src":"11587:7:5","type":""}],"src":"11547:265:5"},{"body":{"nativeSrc":"11863:171:5","nodeType":"YulBlock","src":"11863:171:5","statements":[{"body":{"nativeSrc":"11894:111:5","nodeType":"YulBlock","src":"11894:111:5","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11915:1:5","nodeType":"YulLiteral","src":"11915:1:5","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"11922:3:5","nodeType":"YulLiteral","src":"11922:3:5","type":"","value":"224"},{"kind":"number","nativeSrc":"11927:10:5","nodeType":"YulLiteral","src":"11927:10:5","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"11918:3:5","nodeType":"YulIdentifier","src":"11918:3:5"},"nativeSrc":"11918:20:5","nodeType":"YulFunctionCall","src":"11918:20:5"}],"functionName":{"name":"mstore","nativeSrc":"11908:6:5","nodeType":"YulIdentifier","src":"11908:6:5"},"nativeSrc":"11908:31:5","nodeType":"YulFunctionCall","src":"11908:31:5"},"nativeSrc":"11908:31:5","nodeType":"YulExpressionStatement","src":"11908:31:5"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11959:1:5","nodeType":"YulLiteral","src":"11959:1:5","type":"","value":"4"},{"kind":"number","nativeSrc":"11962:4:5","nodeType":"YulLiteral","src":"11962:4:5","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"11952:6:5","nodeType":"YulIdentifier","src":"11952:6:5"},"nativeSrc":"11952:15:5","nodeType":"YulFunctionCall","src":"11952:15:5"},"nativeSrc":"11952:15:5","nodeType":"YulExpressionStatement","src":"11952:15:5"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"11987:1:5","nodeType":"YulLiteral","src":"11987:1:5","type":"","value":"0"},{"kind":"number","nativeSrc":"11990:4:5","nodeType":"YulLiteral","src":"11990:4:5","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"11980:6:5","nodeType":"YulIdentifier","src":"11980:6:5"},"nativeSrc":"11980:15:5","nodeType":"YulFunctionCall","src":"11980:15:5"},"nativeSrc":"11980:15:5","nodeType":"YulExpressionStatement","src":"11980:15:5"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"11883:1:5","nodeType":"YulIdentifier","src":"11883:1:5"}],"functionName":{"name":"iszero","nativeSrc":"11876:6:5","nodeType":"YulIdentifier","src":"11876:6:5"},"nativeSrc":"11876:9:5","nodeType":"YulFunctionCall","src":"11876:9:5"},"nativeSrc":"11873:132:5","nodeType":"YulIf","src":"11873:132:5"},{"nativeSrc":"12014:14:5","nodeType":"YulAssignment","src":"12014:14:5","value":{"arguments":[{"name":"x","nativeSrc":"12023:1:5","nodeType":"YulIdentifier","src":"12023:1:5"},{"name":"y","nativeSrc":"12026:1:5","nodeType":"YulIdentifier","src":"12026:1:5"}],"functionName":{"name":"div","nativeSrc":"12019:3:5","nodeType":"YulIdentifier","src":"12019:3:5"},"nativeSrc":"12019:9:5","nodeType":"YulFunctionCall","src":"12019:9:5"},"variableNames":[{"name":"r","nativeSrc":"12014:1:5","nodeType":"YulIdentifier","src":"12014:1:5"}]}]},"name":"checked_div_t_uint256","nativeSrc":"11817:217:5","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"11848:1:5","nodeType":"YulTypedName","src":"11848:1:5","type":""},{"name":"y","nativeSrc":"11851:1:5","nodeType":"YulTypedName","src":"11851:1:5","type":""}],"returnVariables":[{"name":"r","nativeSrc":"11857:1:5","nodeType":"YulTypedName","src":"11857:1:5","type":""}],"src":"11817:217:5"}]},"contents":"{\n    { }\n    function abi_decode_array_address_dyn_calldata(offset, end) -> arrayPos, length\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        arrayPos := add(offset, 0x20)\n        if gt(add(add(offset, shl(5, length)), 0x20), end) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_address_$dyn_calldata_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n    }\n    function abi_encode_struct_StakedTokenData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), mload(add(value, 0x80)))\n        mstore(add(pos, 0xa0), mload(add(value, 0xa0)))\n        mstore(add(pos, 0xc0), mload(add(value, 0xc0)))\n        mstore(add(pos, 0xe0), mload(add(value, 0xe0)))\n        mstore(add(pos, 0x0100), mload(add(value, 0x0100)))\n        mstore(add(pos, 0x0120), mload(add(value, 0x0120)))\n        mstore(add(pos, 0x0140), mload(add(value, 0x0140)))\n    }\n    function abi_encode_array_struct_StakedTokenData_dyn(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        pos := add(pos, 0x20)\n        let srcPtr := add(value, 0x20)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_StakedTokenData(mload(srcPtr), pos)\n            pos := add(pos, 0x0160)\n            srcPtr := add(srcPtr, 0x20)\n        }\n        end := pos\n    }\n    function abi_encode_tuple_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_uint256__to_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        tail := abi_encode_array_struct_StakedTokenData_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), value1)\n    }\n    function validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_array$_t_address_$dyn_calldata_ptrt_address(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value0_1, value1_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        let value2_1, value3_1 := abi_decode_array_address_dyn_calldata(add(headStart, offset_1), dataEnd)\n        value2 := value2_1\n        value3 := value3_1\n        let value := calldataload(add(headStart, 64))\n        validator_revert_address(value)\n        value4 := value\n    }\n    function abi_encode_struct_StakedTokenUserData(value, pos)\n    {\n        mstore(pos, mload(value))\n        mstore(add(pos, 0x20), mload(add(value, 0x20)))\n        mstore(add(pos, 0x40), mload(add(value, 0x40)))\n        mstore(add(pos, 0x60), mload(add(value, 0x60)))\n        mstore(add(pos, 0x80), and(mload(add(value, 0x80)), 0xffffffffff))\n        mstore(add(pos, 0xa0), and(mload(add(value, 0xa0)), sub(shl(216, 1), 1)))\n    }\n    function abi_encode_tuple_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr__to_t_array$_t_struct$_StakedTokenData_$888_memory_ptr_$dyn_memory_ptr_t_array$_t_struct$_StakedTokenUserData_$901_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_struct_StakedTokenData_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        let pos := tail_1\n        let length := mload(value1)\n        mstore(tail_1, length)\n        pos := add(tail_1, 32)\n        let srcPtr := add(value1, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_struct_StakedTokenUserData(mload(srcPtr), pos)\n            pos := add(pos, 0xc0)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_uint256__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 736)\n        abi_encode_struct_StakedTokenData(value0, headStart)\n        abi_encode_struct_StakedTokenData(value1, add(headStart, 352))\n        mstore(add(headStart, 704), value2)\n    }\n    function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_uint256__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr_t_uint256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 1120)\n        abi_encode_struct_StakedTokenData(value0, headStart)\n        abi_encode_struct_StakedTokenUserData(value1, add(headStart, 352))\n        abi_encode_struct_StakedTokenData(value2, add(headStart, 544))\n        abi_encode_struct_StakedTokenUserData(value3, add(headStart, 896))\n        mstore(add(headStart, 1088), value4)\n    }\n    function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr__to_t_struct$_StakedTokenData_$888_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 352)\n        abi_encode_struct_StakedTokenData(value0, headStart)\n    }\n    function abi_encode_tuple_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr__to_t_struct$_StakedTokenData_$888_memory_ptr_t_struct$_StakedTokenUserData_$901_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 544)\n        abi_encode_struct_StakedTokenData(value0, headStart)\n        abi_encode_struct_StakedTokenUserData(value1, add(headStart, 352))\n    }\n    function abi_decode_tuple_t_addresst_addresst_address(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n        let value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_stringliteral_79fde935345d5b8f36c4987772c888795595b0c99a35b3b75cbe3d9f98338f9e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 33)\n        mstore(add(headStart, 64), \"Arrays must be of the same lengt\")\n        mstore(add(headStart, 96), \"h\")\n        tail := add(headStart, 128)\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_int256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_uint128_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint128t_uint128t_uint256_fromMemory(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_uint128_fromMemory(headStart)\n        value1 := abi_decode_uint128_fromMemory(add(headStart, 32))\n        let value := 0\n        value := mload(add(headStart, 64))\n        value2 := value\n    }\n    function abi_decode_uint216_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(eq(value, and(value, sub(shl(216, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint216_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := abi_decode_uint216_fromMemory(headStart)\n    }\n    function abi_decode_tuple_t_address_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_address(value)\n        value0 := value\n    }\n    function abi_decode_tuple_t_uint40t_uint216_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(eq(value, and(value, 0xffffffffff))) { revert(0, 0) }\n        value0 := value\n        value1 := abi_decode_uint216_fromMemory(add(headStart, 32))\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x))))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n}","id":5,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"974":[{"length":32,"start":306},{"length":32,"start":657},{"length":32,"start":1399},{"length":32,"start":1439},{"length":32,"start":1646},{"length":32,"start":1730},{"length":32,"start":1950}],"977":[{"length":32,"start":243},{"length":32,"start":2530}],"980":[{"length":32,"start":436},{"length":32,"start":1366},{"length":32,"start":1613},{"length":32,"start":1689},{"length":32,"start":1917},{"length":32,"start":1993}]},"linkReferences":{},"object":"608060405234801561001057600080fd5b506004361061009e5760003560e01c8063cca44f0a11610066578063cca44f0a1461016b578063deb660901461018f578063e0fdf79f146101af578063e33db4e2146101d6578063ee4291ce146101f757600080fd5b8063026dc682146100a3578063304fbe0d146100cd578063a54ae44c146100ee578063b0f0abe91461012d578063b7d1a98d14610154575b600080fd5b6100b66100b136600461107c565b61020a565b6040516100c49291906111a7565b60405180910390f35b6100e06100db3660046111e1565b6103a7565b6040516100c49291906112b1565b6101157f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100c4565b6101157f000000000000000000000000000000000000000000000000000000000000000081565b61015c61053f565b6040516100c493929190611316565b61017e610179366004611342565b610626565b6040516100c495949392919061135f565b6101a261019d3660046113a9565b61074d565b6040516100c491906113e2565b6101157f000000000000000000000000000000000000000000000000000000000000000081565b6101e96101e4366004611342565b610768565b6040516100c49291906113f1565b6101e961020536600461140e565b6107f5565b606060008483146102365760405162461bcd60e51b815260040161022d90611459565b60405180910390fd5b60008567ffffffffffffffff8111156102515761025161149a565b60405190808252806020026020018201604052801561028a57816020015b610277610f90565b81526020019060019003908161026f5790505b50905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031191906114b0565b905060005b8781101561039957610374898983818110610333576103336114c9565b90506020020160208101906103489190611342565b88888481811061035a5761035a6114c9565b905060200201602081019061036f9190611342565b610825565b838281518110610386576103866114c9565b6020908102919091010152600101610316565b509097909650945050505050565b6060808584146103c95760405162461bcd60e51b815260040161022d90611459565b60008667ffffffffffffffff8111156103e4576103e461149a565b60405190808252806020026020018201604052801561041d57816020015b61040a610f90565b8152602001906001900390816104025790505b50905060008767ffffffffffffffff81111561043b5761043b61149a565b60405190808252806020026020018201604052801561047457816020015b610461610fea565b8152602001906001900390816104595790505b50905060005b88811015610530576104be8a8a83818110610497576104976114c9565b90506020020160208101906104ac9190611342565b89898481811061035a5761035a6114c9565b8382815181106104d0576104d06114c9565b602002602001018190525061050b8a8a838181106104f0576104f06114c9565b90506020020160208101906105059190611342565b87610c6b565b82828151811061051d5761051d6114c9565b602090810291909101015260010161047a565b50909890975095505050505050565b610547610f90565b61054f610f90565b600061059b7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610825565b92507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061f91906114b0565b9050909192565b61062e610f90565b610636610fea565b61063e610f90565b610646610fea565b60006106927f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610825565b94506106be7f000000000000000000000000000000000000000000000000000000000000000087610c6b565b93507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561071e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074291906114b0565b905091939590929450565b610755610f90565b61075f8383610825565b90505b92915050565b610770610f90565b610778610fea565b6107c27f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000610825565b91506107ee7f000000000000000000000000000000000000000000000000000000000000000084610c6b565b9050915091565b6107fd610f90565b610805610fea565b61080f8585610825565b6108198685610c6b565b91509150935093915050565b61082d610f90565b6000839050806001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610870573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089491906114b0565b80835260405163266d6a8360e11b815260048101919091526001600160a01b03821690634cdad50690602401602060405180830381865afa1580156108dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090191906114b0565b826020018181525050806001600160a01b031663616e0bf96040518163ffffffff1660e01b8152600401602060405180830381865afa158015610948573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096c91906114b0565b826040018181525050806001600160a01b031663359c4a966040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d791906114b0565b8260600181815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166350d25bcd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6291906114b0565b8260a0018181525050806001600160a01b031663919cd40f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acd91906114b0565b60e08301819052421015610b5b57604051631e23703160e31b81526001600160a01b0385811660048301526000919083169063f11b818890602401606060405180830381865afa158015610b25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4991906114fb565b50506001600160801b031660c0840152505b8160a00151826080018181525050806001600160a01b031663e6aa216c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ba7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcb9190611551565b6001600160d81b031682610120018181525050806001600160a01b031663f34d96da6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4091906114b0565b61014083015260c08201518251610120840151610c5e929190610f28565b6101008301525092915050565b610c73610fea565b6040516370a0823160e01b81526001600160a01b0383811660048301528491908216906370a0823190602401602060405180830381865afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce091906114b0565b826000018181525050806001600160a01b031663312f6b836040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4b919061156c565b6040516370a0823160e01b81526001600160a01b03858116600483015291909116906370a0823190602401602060405180830381865afa158015610d93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db791906114b0565b6020830152815160405163266d6a8360e11b815260048101919091526001600160a01b03821690634cdad50690602401602060405180830381865afa158015610e04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2891906114b0565b604083810191909152516346df7f7160e11b81526001600160a01b038481166004830152821690638dbefee290602401602060405180830381865afa158015610e75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9991906114b0565b606083015260405163091030c360e01b81526001600160a01b03848116600483015282169063091030c3906024016040805180830381865afa158015610ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f079190611589565b6001600160d81b031660a084015264ffffffffff1660808301525092915050565b600082600003610f3a57506000610f89565b6000610f4a6301e13380866115c8565b90506000670de0b6b3a7640000610f6185846115c8565b610f6b91906115ed565b905084610f7a612710836115c8565b610f8491906115ed565b925050505b9392505050565b60405180610160016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060c0016040528060008152602001600081526020016000815260200160008152602001600064ffffffffff16815260200160006001600160d81b031681525090565b60008083601f84011261104257600080fd5b50813567ffffffffffffffff81111561105a57600080fd5b6020830191508360208260051b850101111561107557600080fd5b9250929050565b6000806000806040858703121561109257600080fd5b843567ffffffffffffffff8111156110a957600080fd5b6110b587828801611030565b909550935050602085013567ffffffffffffffff8111156110d557600080fd5b6110e187828801611030565b95989497509550505050565b805182526020810151602083015260408101516040830152606081015160608301526080810151608083015260a081015160a083015260c081015160c083015260e081015160e08301526101008101516101008301526101208101516101208301526101408101516101408301525050565b600081518084526020840193506020830160005b8281101561119d576111868683516110ed565b610160959095019460209190910190600101611173565b5093949350505050565b6040815260006111ba604083018561115f565b90508260208301529392505050565b6001600160a01b03811681146111de57600080fd5b50565b6000806000806000606086880312156111f957600080fd5b853567ffffffffffffffff81111561121057600080fd5b61121c88828901611030565b909650945050602086013567ffffffffffffffff81111561123c57600080fd5b61124888828901611030565b909450925050604086013561125c816111c9565b809150509295509295909350565b8051825260208082015190830152604080820151908301526060808201519083015260808082015164ffffffffff169083015260a0908101516001600160d81b0316910152565b6040815260006112c4604083018561115f565b828103602084015280845180835260208301915060208601925060005b8181101561130a576112f483855161126a565b6020939093019260c092909201916001016112e1565b50909695505050505050565b6102e0810161132582866110ed565b6113336101608301856110ed565b826102c0830152949350505050565b60006020828403121561135457600080fd5b8135610f89816111c9565b610460810161136e82886110ed565b61137c61016083018761126a565b61138a6102208301866110ed565b61139861038083018561126a565b826104408301529695505050505050565b600080604083850312156113bc57600080fd5b82356113c7816111c9565b915060208301356113d7816111c9565b809150509250929050565b610160810161076282846110ed565b610220810161140082856110ed565b610f8961016083018461126a565b60008060006060848603121561142357600080fd5b833561142e816111c9565b9250602084013561143e816111c9565b9150604084013561144e816111c9565b809150509250925092565b60208082526021908201527f417272617973206d757374206265206f66207468652073616d65206c656e67746040820152600d60fb1b606082015260800190565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156114c257600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b80516001600160801b03811681146114f657600080fd5b919050565b60008060006060848603121561151057600080fd5b611519846114df565b9250611527602085016114df565b6040949094015192959394509192915050565b80516001600160d81b03811681146114f657600080fd5b60006020828403121561156357600080fd5b61075f8261153a565b60006020828403121561157e57600080fd5b8151610f89816111c9565b6000806040838503121561159c57600080fd5b825164ffffffffff811681146115b157600080fd5b91506115bf6020840161153a565b90509250929050565b808202811582820484141761076257634e487b7160e01b600052601160045260246000fd5b60008261160a57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220bbebb1a91858ef7d908c90ed6bb1ac1d480885988ff4112ce8725d68cd43781864736f6c634300081b0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x9E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xCCA44F0A GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xCCA44F0A EQ PUSH2 0x16B JUMPI DUP1 PUSH4 0xDEB66090 EQ PUSH2 0x18F JUMPI DUP1 PUSH4 0xE0FDF79F EQ PUSH2 0x1AF JUMPI DUP1 PUSH4 0xE33DB4E2 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0xEE4291CE EQ PUSH2 0x1F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x26DC682 EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0x304FBE0D EQ PUSH2 0xCD JUMPI DUP1 PUSH4 0xA54AE44C EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0xB0F0ABE9 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0xB7D1A98D EQ PUSH2 0x154 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0xB1 CALLDATASIZE PUSH1 0x4 PUSH2 0x107C JUMP JUMPDEST PUSH2 0x20A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP3 SWAP2 SWAP1 PUSH2 0x11A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE0 PUSH2 0xDB CALLDATASIZE PUSH1 0x4 PUSH2 0x11E1 JUMP JUMPDEST PUSH2 0x3A7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP3 SWAP2 SWAP1 PUSH2 0x12B1 JUMP JUMPDEST PUSH2 0x115 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC4 JUMP JUMPDEST PUSH2 0x115 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x15C PUSH2 0x53F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1316 JUMP JUMPDEST PUSH2 0x17E PUSH2 0x179 CALLDATASIZE PUSH1 0x4 PUSH2 0x1342 JUMP JUMPDEST PUSH2 0x626 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x135F JUMP JUMPDEST PUSH2 0x1A2 PUSH2 0x19D CALLDATASIZE PUSH1 0x4 PUSH2 0x13A9 JUMP JUMPDEST PUSH2 0x74D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP2 SWAP1 PUSH2 0x13E2 JUMP JUMPDEST PUSH2 0x115 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x1E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x1342 JUMP JUMPDEST PUSH2 0x768 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC4 SWAP3 SWAP2 SWAP1 PUSH2 0x13F1 JUMP JUMPDEST PUSH2 0x1E9 PUSH2 0x205 CALLDATASIZE PUSH1 0x4 PUSH2 0x140E JUMP JUMPDEST PUSH2 0x7F5 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP5 DUP4 EQ PUSH2 0x236 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22D SWAP1 PUSH2 0x1459 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP6 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x251 JUMPI PUSH2 0x251 PUSH2 0x149A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x28A JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x277 PUSH2 0xF90 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x26F JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x50D25BCD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2ED JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x311 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP8 DUP2 LT ISZERO PUSH2 0x399 JUMPI PUSH2 0x374 DUP10 DUP10 DUP4 DUP2 DUP2 LT PUSH2 0x333 JUMPI PUSH2 0x333 PUSH2 0x14C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x348 SWAP2 SWAP1 PUSH2 0x1342 JUMP JUMPDEST DUP9 DUP9 DUP5 DUP2 DUP2 LT PUSH2 0x35A JUMPI PUSH2 0x35A PUSH2 0x14C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x36F SWAP2 SWAP1 PUSH2 0x1342 JUMP JUMPDEST PUSH2 0x825 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x386 JUMPI PUSH2 0x386 PUSH2 0x14C9 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x316 JUMP JUMPDEST POP SWAP1 SWAP8 SWAP1 SWAP7 POP SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 DUP6 DUP5 EQ PUSH2 0x3C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x22D SWAP1 PUSH2 0x1459 JUMP JUMPDEST PUSH1 0x0 DUP7 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3E4 JUMPI PUSH2 0x3E4 PUSH2 0x149A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x41D JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x40A PUSH2 0xF90 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x402 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP8 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x43B JUMPI PUSH2 0x43B PUSH2 0x149A JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x474 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x461 PUSH2 0xFEA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x459 JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP9 DUP2 LT ISZERO PUSH2 0x530 JUMPI PUSH2 0x4BE DUP11 DUP11 DUP4 DUP2 DUP2 LT PUSH2 0x497 JUMPI PUSH2 0x497 PUSH2 0x14C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x4AC SWAP2 SWAP1 PUSH2 0x1342 JUMP JUMPDEST DUP10 DUP10 DUP5 DUP2 DUP2 LT PUSH2 0x35A JUMPI PUSH2 0x35A PUSH2 0x14C9 JUMP JUMPDEST DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x4D0 JUMPI PUSH2 0x4D0 PUSH2 0x14C9 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x50B DUP11 DUP11 DUP4 DUP2 DUP2 LT PUSH2 0x4F0 JUMPI PUSH2 0x4F0 PUSH2 0x14C9 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x505 SWAP2 SWAP1 PUSH2 0x1342 JUMP JUMPDEST DUP8 PUSH2 0xC6B JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x51D JUMPI PUSH2 0x51D PUSH2 0x14C9 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x47A JUMP JUMPDEST POP SWAP1 SWAP9 SWAP1 SWAP8 POP SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x547 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x54F PUSH2 0xF90 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x59B PUSH32 0x0 PUSH32 0x0 PUSH2 0x825 JUMP JUMPDEST SWAP3 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x50D25BCD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x5FB JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x61F SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST SWAP1 POP SWAP1 SWAP2 SWAP3 JUMP JUMPDEST PUSH2 0x62E PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x636 PUSH2 0xFEA JUMP JUMPDEST PUSH2 0x63E PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x646 PUSH2 0xFEA JUMP JUMPDEST PUSH1 0x0 PUSH2 0x692 PUSH32 0x0 PUSH32 0x0 PUSH2 0x825 JUMP JUMPDEST SWAP5 POP PUSH2 0x6BE PUSH32 0x0 DUP8 PUSH2 0xC6B JUMP JUMPDEST SWAP4 POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x50D25BCD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x71E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x742 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP4 SWAP6 SWAP1 SWAP3 SWAP5 POP JUMP JUMPDEST PUSH2 0x755 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x75F DUP4 DUP4 PUSH2 0x825 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x770 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x778 PUSH2 0xFEA JUMP JUMPDEST PUSH2 0x7C2 PUSH32 0x0 PUSH32 0x0 PUSH2 0x825 JUMP JUMPDEST SWAP2 POP PUSH2 0x7EE PUSH32 0x0 DUP5 PUSH2 0xC6B JUMP JUMPDEST SWAP1 POP SWAP2 POP SWAP2 JUMP JUMPDEST PUSH2 0x7FD PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x805 PUSH2 0xFEA JUMP JUMPDEST PUSH2 0x80F DUP6 DUP6 PUSH2 0x825 JUMP JUMPDEST PUSH2 0x819 DUP7 DUP6 PUSH2 0xC6B JUMP JUMPDEST SWAP2 POP SWAP2 POP SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x82D PUSH2 0xF90 JUMP JUMPDEST PUSH1 0x0 DUP4 SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x18160DDD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x870 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x894 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP1 DUP4 MSTORE PUSH1 0x40 MLOAD PUSH4 0x266D6A83 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x4CDAD506 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8DD JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x901 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0x20 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x616E0BF9 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x948 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x96C SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0x40 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x359C4A96 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x9B3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9D7 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0x60 ADD DUP2 DUP2 MSTORE POP POP PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x50D25BCD PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xA3E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA62 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0xA0 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x919CD40F PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xAA9 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xACD SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH1 0xE0 DUP4 ADD DUP2 SWAP1 MSTORE TIMESTAMP LT ISZERO PUSH2 0xB5B JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E237031 PUSH1 0xE3 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP4 AND SWAP1 PUSH4 0xF11B8188 SWAP1 PUSH1 0x24 ADD PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xB25 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xB49 SWAP2 SWAP1 PUSH2 0x14FB JUMP JUMPDEST POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH1 0xC0 DUP5 ADD MSTORE POP JUMPDEST DUP2 PUSH1 0xA0 ADD MLOAD DUP3 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xE6AA216C PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xBA7 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xBCB SWAP2 SWAP1 PUSH2 0x1551 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP3 PUSH2 0x120 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xF34D96DA PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC1C JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC40 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH2 0x140 DUP4 ADD MSTORE PUSH1 0xC0 DUP3 ADD MLOAD DUP3 MLOAD PUSH2 0x120 DUP5 ADD MLOAD PUSH2 0xC5E SWAP3 SWAP2 SWAP1 PUSH2 0xF28 JUMP JUMPDEST PUSH2 0x100 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC73 PUSH2 0xFEA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP5 SWAP2 SWAP1 DUP3 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xCBC JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xCE0 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST DUP3 PUSH1 0x0 ADD DUP2 DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x312F6B83 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD27 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xD4B SWAP2 SWAP1 PUSH2 0x156C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x70A08231 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE SWAP2 SWAP1 SWAP2 AND SWAP1 PUSH4 0x70A08231 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xD93 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xDB7 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD MSTORE DUP2 MLOAD PUSH1 0x40 MLOAD PUSH4 0x266D6A83 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND SWAP1 PUSH4 0x4CDAD506 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE04 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE28 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH1 0x40 DUP4 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE MLOAD PUSH4 0x46DF7F71 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x8DBEFEE2 SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xE75 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xE99 SWAP2 SWAP1 PUSH2 0x14B0 JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x40 MLOAD PUSH4 0x91030C3 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE DUP3 AND SWAP1 PUSH4 0x91030C3 SWAP1 PUSH1 0x24 ADD PUSH1 0x40 DUP1 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xEE3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xF07 SWAP2 SWAP1 PUSH2 0x1589 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH1 0xA0 DUP5 ADD MSTORE PUSH5 0xFFFFFFFFFF AND PUSH1 0x80 DUP4 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 SUB PUSH2 0xF3A JUMPI POP PUSH1 0x0 PUSH2 0xF89 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF4A PUSH4 0x1E13380 DUP7 PUSH2 0x15C8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 PUSH2 0xF61 DUP6 DUP5 PUSH2 0x15C8 JUMP JUMPDEST PUSH2 0xF6B SWAP2 SWAP1 PUSH2 0x15ED JUMP JUMPDEST SWAP1 POP DUP5 PUSH2 0xF7A PUSH2 0x2710 DUP4 PUSH2 0x15C8 JUMP JUMPDEST PUSH2 0xF84 SWAP2 SWAP1 PUSH2 0x15ED JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH2 0x160 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xC0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1042 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x105A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP6 ADD ADD GT ISZERO PUSH2 0x1075 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x40 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1092 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10B5 DUP8 DUP3 DUP9 ADD PUSH2 0x1030 JUMP JUMPDEST SWAP1 SWAP6 POP SWAP4 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10E1 DUP8 DUP3 DUP9 ADD PUSH2 0x1030 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP6 POP POP POP POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP2 ADD MLOAD PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 DUP2 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x80 DUP2 ADD MLOAD PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0xA0 DUP2 ADD MLOAD PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0xC0 DUP2 ADD MLOAD PUSH1 0xC0 DUP4 ADD MSTORE PUSH1 0xE0 DUP2 ADD MLOAD PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x100 DUP2 ADD MLOAD PUSH2 0x100 DUP4 ADD MSTORE PUSH2 0x120 DUP2 ADD MLOAD PUSH2 0x120 DUP4 ADD MSTORE PUSH2 0x140 DUP2 ADD MLOAD PUSH2 0x140 DUP4 ADD MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x119D JUMPI PUSH2 0x1186 DUP7 DUP4 MLOAD PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x160 SWAP6 SWAP1 SWAP6 ADD SWAP5 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x1173 JUMP JUMPDEST POP SWAP4 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x11BA PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x115F JUMP JUMPDEST SWAP1 POP DUP3 PUSH1 0x20 DUP4 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x11F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1210 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x121C DUP9 DUP3 DUP10 ADD PUSH2 0x1030 JUMP JUMPDEST SWAP1 SWAP7 POP SWAP5 POP POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x123C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1248 DUP9 DUP3 DUP10 ADD PUSH2 0x1030 JUMP JUMPDEST SWAP1 SWAP5 POP SWAP3 POP POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x125C DUP2 PUSH2 0x11C9 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST DUP1 MLOAD DUP3 MSTORE PUSH1 0x20 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x40 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x60 DUP1 DUP3 ADD MLOAD SWAP1 DUP4 ADD MSTORE PUSH1 0x80 DUP1 DUP3 ADD MLOAD PUSH5 0xFFFFFFFFFF AND SWAP1 DUP4 ADD MSTORE PUSH1 0xA0 SWAP1 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x12C4 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x115F JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE DUP1 DUP5 MLOAD DUP1 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 POP PUSH1 0x20 DUP7 ADD SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x130A JUMPI PUSH2 0x12F4 DUP4 DUP6 MLOAD PUSH2 0x126A JUMP JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0xC0 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x12E1 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x2E0 DUP2 ADD PUSH2 0x1325 DUP3 DUP7 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x1333 PUSH2 0x160 DUP4 ADD DUP6 PUSH2 0x10ED JUMP JUMPDEST DUP3 PUSH2 0x2C0 DUP4 ADD MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1354 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xF89 DUP2 PUSH2 0x11C9 JUMP JUMPDEST PUSH2 0x460 DUP2 ADD PUSH2 0x136E DUP3 DUP9 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x137C PUSH2 0x160 DUP4 ADD DUP8 PUSH2 0x126A JUMP JUMPDEST PUSH2 0x138A PUSH2 0x220 DUP4 ADD DUP7 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x1398 PUSH2 0x380 DUP4 ADD DUP6 PUSH2 0x126A JUMP JUMPDEST DUP3 PUSH2 0x440 DUP4 ADD MSTORE SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x13BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x13C7 DUP2 PUSH2 0x11C9 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x13D7 DUP2 PUSH2 0x11C9 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x160 DUP2 ADD PUSH2 0x762 DUP3 DUP5 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x220 DUP2 ADD PUSH2 0x1400 DUP3 DUP6 PUSH2 0x10ED JUMP JUMPDEST PUSH2 0xF89 PUSH2 0x160 DUP4 ADD DUP5 PUSH2 0x126A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1423 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x142E DUP2 PUSH2 0x11C9 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x143E DUP2 PUSH2 0x11C9 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH2 0x144E DUP2 PUSH2 0x11C9 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x21 SWAP1 DUP3 ADD MSTORE PUSH32 0x417272617973206D757374206265206F66207468652073616D65206C656E6774 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0xFB SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1510 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1519 DUP5 PUSH2 0x14DF JUMP JUMPDEST SWAP3 POP PUSH2 0x1527 PUSH1 0x20 DUP6 ADD PUSH2 0x14DF JUMP JUMPDEST PUSH1 0x40 SWAP5 SWAP1 SWAP5 ADD MLOAD SWAP3 SWAP6 SWAP4 SWAP5 POP SWAP2 SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x14F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1563 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x75F DUP3 PUSH2 0x153A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x157E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0xF89 DUP2 PUSH2 0x11C9 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x159C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x15B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 POP PUSH2 0x15BF PUSH1 0x20 DUP5 ADD PUSH2 0x153A JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x762 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x160A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP DIV SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBB 0xEB 0xB1 0xA9 XOR PC 0xEF PUSH30 0x908C90ED6BB1AC1D480885988FF4112CE8725D68CD43781864736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"509:6485:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2796:644;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;3446:764;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;634:53::-;;;;;;;;-1:-1:-1;;;;;5335:32:5;;;5317:51;;5305:2;5290:18;634:53:4;5171:203:5;576:52:4;;;;;1149:443;;;:::i;:::-;;;;;;;;;:::i;1643:644::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;2293:198::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;693:45::-;;;;;4216:357;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;2497:293::-;;;;;;:::i;:::-;;:::i;2796:644::-;2935:24;2961:7;2988:37;;;2980:83;;;;-1:-1:-1;;;2980:83:4;;;;;;;:::i;:::-;;;;;;;;;3074:35;3134:12;3112:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;3074:80;;3164:16;3211:18;-1:-1:-1;;;;;3191:52:4;;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3164:82;;3261:9;3256:139;3276:23;;;3256:139;;;3336:48;3356:12;;3369:1;3356:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3373:7;;3381:1;3373:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3336:19;:48::i;:::-;3320:10;3331:1;3320:13;;;;;;;;:::i;:::-;;;;;;;;;;:64;3301:3;;3256:139;;;-1:-1:-1;3412:10:4;;;;-1:-1:-1;2796:644:4;-1:-1:-1;;;;;2796:644:4:o;3446:764::-;3606:24;;3680:37;;;3672:83;;;;-1:-1:-1;;;3672:83:4;;;;;;;:::i;:::-;3765:35;3825:12;3803:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;3765:80:4;-1:-1:-1;3855:37:4;3921:12;3895:46;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;3855:86;;3957:9;3952:213;3972:23;;;3952:213;;;4032:48;4052:12;;4065:1;4052:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4069:7;;4077:1;4069:10;;;;;;;:::i;4032:48::-;4016:10;4027:1;4016:13;;;;;;;;:::i;:::-;;;;;;:64;;;;4108:46;4132:12;;4145:1;4132:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4149:4;4108:23;:46::i;:::-;4094:8;4103:1;4094:11;;;;;;;;:::i;:::-;;;;;;;;;;:60;3997:3;;3952:213;;;-1:-1:-1;4182:10:4;;;;-1:-1:-1;3446:764:4;-1:-1:-1;;;;;;3446:764:4:o;1149:443::-;1259:34;;:::i;:::-;1307:22;;:::i;:::-;1394:16;1449:52;1469:11;1482:18;1449:19;:52::i;:::-;1435:66;;1550:18;-1:-1:-1;;;;;1530:52:4;;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1511:74;;1149:443;;;:::o;1643:644::-;1783:34;;:::i;:::-;1831:42;;:::i;:::-;1887:22;;:::i;:::-;1951:26;;:::i;:::-;2019:16;2074:52;2094:11;2107:18;2074:19;:52::i;:::-;2060:66;;2154:42;2178:11;2191:4;2154:23;:42::i;:::-;2136:60;;2245:18;-1:-1:-1;;;;;2225:52:4;;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2206:74;;1643:644;;;;;;;:::o;2293:198::-;2403:22;;:::i;:::-;2444:40;2464:11;2477:6;2444:19;:40::i;:::-;2437:47;;2293:198;;;;;:::o;4216:357::-;4336:34;;:::i;:::-;4372:42;;:::i;:::-;4444:52;4464:11;4477:18;4444:19;:52::i;:::-;4430:66;;4524:42;4548:11;4561:4;4524:23;:42::i;:::-;4506:60;;4216:357;;;:::o;2497:293::-;2628:22;;:::i;:::-;2652:26;;:::i;:::-;2698:40;2718:11;2731:6;2698:19;:40::i;:::-;2740:42;2764:11;2777:4;2740:23;:42::i;:::-;2690:93;;;;2497:293;;;;;;:::o;4579:1274::-;4690:27;;:::i;:::-;4729:31;4786:11;4729:69;;4847:8;-1:-1:-1;;;;;4847:20:4;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4817:52;;;4919:51;;-1:-1:-1;;;4919:51:4;;;;;9886:25:5;;;;-1:-1:-1;;;;;4919:22:4;;;;;9859:18:5;;4919:51:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4879:4;:37;;:91;;;;;5008:8;-1:-1:-1;;;;;5008:27:4;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4980:4;:25;;:57;;;;;5073:8;-1:-1:-1;;;;;5073:23:4;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5047:4;:23;;:51;;;;;5163:19;-1:-1:-1;;;;;5143:53:4;;:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5108:4;:24;;:91;;;;;5232:8;-1:-1:-1;;;;;5232:25:4;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5209:20;;;:50;;;5282:15;:38;5278:200;;;5370:37;;-1:-1:-1;;;5370:37:4;;-1:-1:-1;;;;;5335:32:5;;;5370:37:4;;;5317:51:5;5337:25:4;;5370:15;;;;;;5290:18:5;;5370:37:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;5336:71:4;5421:26;;;:46;-1:-1:-1;5278:200:4;5515:4;:24;;;5488:4;:24;;:51;;;;;5576:8;-1:-1:-1;;;;;5576:24:4;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;5549:53:4;:4;:24;;:53;;;;;5642:8;-1:-1:-1;;;;;5642:34:4;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5612:27;;;:66;5731:26;;;;5771:27;;5812:24;;;;5704:142;;5731:26;5771:27;5704:13;:142::i;:::-;5688:13;;;:158;-1:-1:-1;5688:4:4;4579:1274;-1:-1:-1;;4579:1274:4:o;5859:692::-;5972:31;;:::i;:::-;6133:24;;-1:-1:-1;;;6133:24:4;;-1:-1:-1;;;;;5335:32:5;;;6133:24:4;;;5317:51:5;6072:11:4;;6133:18;;;;;;5290::5;;6133:24:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6103:4;:27;;:54;;;;;6208:8;-1:-1:-1;;;;;6208:21:4;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6201:47;;-1:-1:-1;;;6201:47:4;;-1:-1:-1;;;;;5335:32:5;;;6201:47:4;;;5317:51:5;6201:41:4;;;;;;;5290:18:5;;6201:47:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6167:31;;;:81;6316:27;;6293:51;;-1:-1:-1;;;6293:51:4;;;;;9886:25:5;;;;-1:-1:-1;;;;;6293:22:4;;;;;9859:18:5;;6293:51:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6258:32;;;;:86;;;;6376:37;-1:-1:-1;;;6376:37:4;;-1:-1:-1;;;;;5335:32:5;;;6376:37:4;;;5317:51:5;6376:31:4;;;;;5290:18:5;;6376:37:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6354:19;;;:59;6513:31;;-1:-1:-1;;;6513:31:4;;-1:-1:-1;;;;;5335:32:5;;;6513:31:4;;;5317:51:5;6513:25:4;;;;;5290:18:5;;6513:31:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6465:79:4;6490:19;;;6465:79;;;6466:22;;;6465:79;-1:-1:-1;6466:4:4;5859:692;-1:-1:-1;;5859:692:4:o;6557:435::-;6707:7;6730:11;6745:1;6730:16;6726:30;;-1:-1:-1;6755:1:4;6748:8;;6726:30;6775:21;6799:40;789:8;6799:21;:40;:::i;:::-;6775:64;-1:-1:-1;6849:23:4;6908:4;6876:28;6892:12;6775:64;6876:28;:::i;:::-;6875:37;;;;:::i;:::-;6849:63;-1:-1:-1;6974:11:4;6939:31;844:5;6849:63;6939:31;:::i;:::-;6938:47;;;;:::i;:::-;6931:54;;;;6557:435;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:367:5:-;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:5;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:768::-;508:6;516;524;532;585:2;573:9;564:7;560:23;556:32;553:52;;;601:1;598;591:12;553:52;641:9;628:23;674:18;666:6;663:30;660:50;;;706:1;703;696:12;660:50;745:70;807:7;798:6;787:9;783:22;745:70;:::i;:::-;834:8;;-1:-1:-1;719:96:5;-1:-1:-1;;922:2:5;907:18;;894:32;951:18;938:32;;935:52;;;983:1;980;973:12;935:52;1022:72;1086:7;1075:8;1064:9;1060:24;1022:72;:::i;:::-;386:768;;;;-1:-1:-1;1113:8:5;-1:-1:-1;;;;386:768:5:o;1159:672::-;1246:5;1240:12;1235:3;1228:25;1302:4;1295:5;1291:16;1285:23;1278:4;1273:3;1269:14;1262:47;1358:4;1351:5;1347:16;1341:23;1334:4;1329:3;1325:14;1318:47;1414:4;1407:5;1403:16;1397:23;1390:4;1385:3;1381:14;1374:47;1470:4;1463:5;1459:16;1453:23;1446:4;1441:3;1437:14;1430:47;1526:4;1519:5;1515:16;1509:23;1502:4;1497:3;1493:14;1486:47;1582:4;1575:5;1571:16;1565:23;1558:4;1553:3;1549:14;1542:47;1638:4;1631:5;1627:16;1621:23;1614:4;1609:3;1605:14;1598:47;1696:6;1689:5;1685:18;1679:25;1670:6;1665:3;1661:16;1654:51;1756:6;1749:5;1745:18;1739:25;1730:6;1725:3;1721:16;1714:51;1816:6;1809:5;1805:18;1799:25;1790:6;1785:3;1781:16;1774:51;;;1159:672::o;1836:464::-;1904:3;1942:5;1936:12;1969:6;1964:3;1957:19;2001:4;1996:3;1992:14;1985:21;;2040:4;2033:5;2029:16;2063:1;2073:202;2087:6;2084:1;2081:13;2073:202;;;2136:53;2185:3;2176:6;2170:13;2136:53;:::i;:::-;2218:6;2209:16;;;;;2260:4;2248:17;;;;;2109:1;2102:9;2073:202;;;-1:-1:-1;2291:3:5;;1836:464;-1:-1:-1;;;;1836:464:5:o;2305:411::-;2576:2;2565:9;2558:21;2539:4;2596:71;2663:2;2652:9;2648:18;2640:6;2596:71;:::i;:::-;2588:79;;2703:6;2698:2;2687:9;2683:18;2676:34;2305:411;;;;;:::o;2721:131::-;-1:-1:-1;;;;;2796:31:5;;2786:42;;2776:70;;2842:1;2839;2832:12;2776:70;2721:131;:::o;2857:903::-;2988:6;2996;3004;3012;3020;3073:2;3061:9;3052:7;3048:23;3044:32;3041:52;;;3089:1;3086;3079:12;3041:52;3129:9;3116:23;3162:18;3154:6;3151:30;3148:50;;;3194:1;3191;3184:12;3148:50;3233:70;3295:7;3286:6;3275:9;3271:22;3233:70;:::i;:::-;3322:8;;-1:-1:-1;3207:96:5;-1:-1:-1;;3410:2:5;3395:18;;3382:32;3439:18;3426:32;;3423:52;;;3471:1;3468;3461:12;3423:52;3510:72;3574:7;3563:8;3552:9;3548:24;3510:72;:::i;:::-;3601:8;;-1:-1:-1;3484:98:5;-1:-1:-1;;3686:2:5;3671:18;;3658:32;3699:31;3658:32;3699:31;:::i;:::-;3749:5;3739:15;;;2857:903;;;;;;;;:::o;3765:429::-;3850:12;;3838:25;;3912:4;3901:16;;;3895:23;3879:14;;;3872:47;3968:4;3957:16;;;3951:23;3935:14;;;3928:47;4024:4;4013:16;;;4007:23;3991:14;;;3984:47;4084:4;4073:16;;;4067:23;4092:12;4063:42;4047:14;;;4040:66;4159:4;4148:16;;;4142:23;-1:-1:-1;;;;;4138:49:5;4122:14;;4115:73;3765:429::o;4199:967::-;4592:2;4581:9;4574:21;4555:4;4618:71;4685:2;4674:9;4670:18;4662:6;4618:71;:::i;:::-;4737:9;4729:6;4725:22;4720:2;4709:9;4705:18;4698:50;4768:6;4803;4797:13;4834:6;4826;4819:22;4869:2;4861:6;4857:15;4850:22;;4907:2;4899:6;4895:15;4881:29;;4928:1;4938:202;4952:6;4949:1;4946:13;4938:202;;;5001:57;5054:3;5045:6;5039:13;5001:57;:::i;:::-;5127:2;5115:15;;;;;5087:4;5078:14;;;;;4974:1;4967:9;4938:202;;;-1:-1:-1;5157:3:5;;4199:967;-1:-1:-1;;;;;;4199:967:5:o;5379:504::-;5697:3;5682:19;;5710:52;5686:9;5744:6;5710:52;:::i;:::-;5771:62;5828:3;5817:9;5813:19;5805:6;5771:62;:::i;:::-;5870:6;5864:3;5853:9;5849:19;5842:35;5379:504;;;;;;:::o;5888:247::-;5947:6;6000:2;5988:9;5979:7;5975:23;5971:32;5968:52;;;6016:1;6013;6006:12;5968:52;6055:9;6042:23;6074:31;6099:5;6074:31;:::i;6140:856::-;6658:4;6643:20;;6672:52;6647:9;6706:6;6672:52;:::i;:::-;6733:66;6794:3;6783:9;6779:19;6771:6;6733:66;:::i;:::-;6808:62;6865:3;6854:9;6850:19;6842:6;6808:62;:::i;:::-;6879:66;6940:3;6929:9;6925:19;6917:6;6879:66;:::i;:::-;6983:6;6976:4;6965:9;6961:20;6954:36;6140:856;;;;;;;;:::o;7001:388::-;7069:6;7077;7130:2;7118:9;7109:7;7105:23;7101:32;7098:52;;;7146:1;7143;7136:12;7098:52;7185:9;7172:23;7204:31;7229:5;7204:31;:::i;:::-;7254:5;-1:-1:-1;7311:2:5;7296:18;;7283:32;7324:33;7283:32;7324:33;:::i;:::-;7376:7;7366:17;;;7001:388;;;;;:::o;7394:269::-;7592:3;7577:19;;7605:52;7581:9;7639:6;7605:52;:::i;7668:444::-;7966:3;7951:19;;7979:52;7955:9;8013:6;7979:52;:::i;:::-;8040:66;8101:3;8090:9;8086:19;8078:6;8040:66;:::i;8117:529::-;8194:6;8202;8210;8263:2;8251:9;8242:7;8238:23;8234:32;8231:52;;;8279:1;8276;8269:12;8231:52;8318:9;8305:23;8337:31;8362:5;8337:31;:::i;:::-;8387:5;-1:-1:-1;8444:2:5;8429:18;;8416:32;8457:33;8416:32;8457:33;:::i;:::-;8509:7;-1:-1:-1;8568:2:5;8553:18;;8540:32;8581:33;8540:32;8581:33;:::i;:::-;8633:7;8623:17;;;8117:529;;;;;:::o;8651:397::-;8853:2;8835:21;;;8892:2;8872:18;;;8865:30;8931:34;8926:2;8911:18;;8904:62;-1:-1:-1;;;8997:2:5;8982:18;;8975:31;9038:3;9023:19;;8651:397::o;9053:127::-;9114:10;9109:3;9105:20;9102:1;9095:31;9145:4;9142:1;9135:15;9169:4;9166:1;9159:15;9185:183;9254:6;9307:2;9295:9;9286:7;9282:23;9278:32;9275:52;;;9323:1;9320;9313:12;9275:52;-1:-1:-1;9346:16:5;;9185:183;-1:-1:-1;9185:183:5:o;9373:127::-;9434:10;9429:3;9425:20;9422:1;9415:31;9465:4;9462:1;9455:15;9489:4;9486:1;9479:15;9922:192;10001:13;;-1:-1:-1;;;;;10043:46:5;;10033:57;;10023:85;;10104:1;10101;10094:12;10023:85;9922:192;;;:::o;10119:400::-;10207:6;10215;10223;10276:2;10264:9;10255:7;10251:23;10247:32;10244:52;;;10292:1;10289;10282:12;10244:52;10315:40;10345:9;10315:40;:::i;:::-;10305:50;;10374:49;10419:2;10408:9;10404:18;10374:49;:::i;:::-;10485:2;10470:18;;;;10464:25;10119:400;;10364:59;;-1:-1:-1;10464:25:5;;10119:400;-1:-1:-1;;10119:400:5:o;10524:177::-;10603:13;;-1:-1:-1;;;;;10645:31:5;;10635:42;;10625:70;;10691:1;10688;10681:12;10706:208;10776:6;10829:2;10817:9;10808:7;10804:23;10800:32;10797:52;;;10845:1;10842;10835:12;10797:52;10868:40;10898:9;10868:40;:::i;10919:251::-;10989:6;11042:2;11030:9;11021:7;11017:23;11013:32;11010:52;;;11058:1;11055;11048:12;11010:52;11090:9;11084:16;11109:31;11134:5;11109:31;:::i;11175:367::-;11253:6;11261;11314:2;11302:9;11293:7;11289:23;11285:32;11282:52;;;11330:1;11327;11320:12;11282:52;11362:9;11356:16;11412:12;11405:5;11401:24;11394:5;11391:35;11381:63;;11440:1;11437;11430:12;11381:63;11463:5;-1:-1:-1;11487:49:5;11532:2;11517:18;;11487:49;:::i;:::-;11477:59;;11175:367;;;;;:::o;11547:265::-;11620:9;;;11651;;11668:15;;;11662:22;;11648:37;11638:168;;11728:10;11723:3;11719:20;11716:1;11709:31;11763:4;11760:1;11753:15;11791:4;11788:1;11781:15;11817:217;11857:1;11883;11873:132;;11927:10;11922:3;11918:20;11915:1;11908:31;11962:4;11959:1;11952:15;11990:4;11987:1;11980:15;11873:132;-1:-1:-1;12019:9:5;;11817:217::o"},"methodIdentifiers":{"ETH_USD_PRICE_FEED()":"b0f0abe9","PSYS_USD_PRICE_FEED()":"a54ae44c","STAKED_PSYS()":"e0fdf79f","getAllStakedTokenData()":"b7d1a98d","getAllStakedTokenUserData(address)":"cca44f0a","getStakedAssetData(address,address)":"deb66090","getStakedAssetDataBatch(address[],address[])":"026dc682","getStakedUserData(address,address,address)":"ee4291ce","getStakedUserDataBatch(address[],address[],address)":"304fbe0d","getstkPSYSUserData(address)":"e33db4e2"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"stkPsys\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"ethUsdPriceFeed\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"psysUsdPriceFeed\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ETH_USD_PRICE_FEED\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PSYS_USD_PRICE_FEED\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"STAKED_PSYS\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getAllStakedTokenData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"stkPSYSData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"ethPrice\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getAllStakedTokenUserData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"stkPSYSData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"underlyingTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsToClaim\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"cooldownTimestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"cooldownAmount\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenUserData\",\"name\":\"stkPSYSUserData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"underlyingTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsToClaim\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"cooldownTimestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"cooldownAmount\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenUserData\",\"name\":\"\",\"type\":\"tuple\"},{\"internalType\":\"uint256\",\"name\":\"ethPrice\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"stakedAsset\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"oracle\",\"type\":\"address\"}],\"name\":\"getStakedAssetData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"stakedAssets\",\"type\":\"address[]\"},{\"internalType\":\"address[]\",\"name\":\"oracles\",\"type\":\"address[]\"}],\"name\":\"getStakedAssetDataBatch\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData[]\",\"name\":\"\",\"type\":\"tuple[]\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"stakedAsset\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"oracle\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getStakedUserData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"underlyingTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsToClaim\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"cooldownTimestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"cooldownAmount\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenUserData\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"stakedAssets\",\"type\":\"address[]\"},{\"internalType\":\"address[]\",\"name\":\"oracles\",\"type\":\"address[]\"},{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getStakedUserDataBatch\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData[]\",\"name\":\"\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"underlyingTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsToClaim\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"cooldownTimestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"cooldownAmount\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenUserData[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"getstkPSYSUserData\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalSupply\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenTotalRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeCooldownSeconds\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeUnstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardTokenPriceEth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionPerSecond\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"distributionEnd\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakeApy\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"currentExchangeRate\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenData\",\"name\":\"stkPSYSData\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"stakedTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"underlyingTokenUserBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"stakedTokenRedeemableAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"rewardsToClaim\",\"type\":\"uint256\"},{\"internalType\":\"uint40\",\"name\":\"cooldownTimestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"cooldownAmount\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedTokenDataProvider.StakedTokenUserData\",\"name\":\"stkPSYSUserData\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"BGD Labs, modified by Pegasys\",\"kind\":\"dev\",\"methods\":{},\"title\":\"StakedTokenDataProvider\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Data provider contract for Staked PSYS tokens of the Safety Module\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/misc/StakedTokenDataProvider.sol\":\"StakedTokenDataProvider\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/interfaces/AggregatedStakedPSYSV3.sol\":{\"keccak256\":\"0xdb1f5f3726e9f9629b6af27968e2559f39e4402292231d4b36950685f395e4fb\",\"urls\":[\"bzz-raw://16477c802a46a2b53a68bceebdbb6fff4a246a802e00a659eb41bd9f291768c5\",\"dweb:/ipfs/Qmd6RaALUKkfrSYLgTY6MBn3Mts2vSjz6t95dEm5qwBWUz\"]},\"contracts/interfaces/AggregatorInterface.sol\":{\"keccak256\":\"0xbe3ed5aeefac5fc22746c676e9a5ee53cba3edd3eda52676f5271ce2afe21fb0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e4eb5b23f0a01ca93981e09ec78f2b6a9eb1c19deaa1f7662f22bcbca2835674\",\"dweb:/ipfs/QmTx5SvwqaztJw7qES8xNN1n5FYUttj82tjAserCcPugXg\"]},\"contracts/interfaces/IERC20.sol\":{\"keccak256\":\"0xf60c3588615e47906292265ebdc539f36e624cc166a7e338972e8f7479b3c58e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d61baa7db1a5ec4126d6ab038d6975151bcb173437e51d4d141325fe99f4630c\",\"dweb:/ipfs/QmZ8mYs5xSjd3vNYZWjjBREpob2T84yu5kaHiFFXuVw1jj\"]},\"contracts/interfaces/IStakedTokenDataProvider.sol\":{\"keccak256\":\"0x19c12752bdc8a668cc528f24774e5d16e64a7d7a282070c3e0813cf205f0d4f5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bc4cd2fa40bdb2bbe51149f4298d1ed09e9a48250c9d315a0f16b85e9892054b\",\"dweb:/ipfs/QmVeQWDSPNDRBhmddGrr6DmZCpdUVjfuWhC3qBHwDuP42V\"]},\"contracts/misc/StakedTokenDataProvider.sol\":{\"keccak256\":\"0x362e0ffb80b1ea204644b3d21419a66e1f3f2dba345298f605ba962c79a05268\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://01c33927fb774ea649747dc62cc4ff508f8503a827f31b7346d785c1ad6d6457\",\"dweb:/ipfs/QmcGbkff8hKS1VsKymrHcadmZ2W7aBw3iFHc9MYfnzxhN4\"]}},\"version\":1}"}}}}}